pub trait TCategoryMul<Other: TCategory>: TCategory {
type Representative: TCategory;
}
Expand description
Traits that gives the Transform
category that is compatible with the result of the
multiplication of transformations with categories Self
and Other
.
Required Associated Types§
Sourcetype Representative: TCategory
type Representative: TCategory
The transform category that results from the multiplication of a Transform<Self>
to a
Transform<Other>
. This is usually equal to Self
or Other
, whichever is the most
general category.
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.