Skip to main content

FullXYZM

Trait FullXYZM 

Source
pub trait FullXYZM<M>:
    GetXYZM<M>
    + SetXYZM<M>
    + NewXYZM<M>
    + Clone
    + PartialEq
    + Ord { }
Expand description

Composite Trait for XYZM use cases

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, M> FullXYZM<M> for T
where T: GetXYZM<M> + SetXYZM<M> + NewXYZM<M> + Clone + PartialEq + Ord,