nalgebra::geometry

Trait SubTCategoryOf

Source
pub trait SubTCategoryOf<Other: TCategory>: TCategory { }
Expand description

Indicates that Self is a more specific Transform category than Other.

Automatically implemented based on SuperTCategoryOf.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T1, T2> SubTCategoryOf<T2> for T1
where T1: TCategory, T2: SuperTCategoryOf<T1>,