pub trait Construct<T>:
Debug
+ Copy
+ Clone
+ PartialEq
+ Add<Self, Output = Self>
+ Add<T, Output = Self>
+ Sub<Self, Output = Self>
+ Sub<T, Output = Self>
+ Mul<Self, Output = Self>
+ Mul<T, Output = Self>
+ Div<Self, Output = Self>
+ Div<T, Output = Self>
+ Rem<Self, Output = Self>
+ Rem<T, Output = Self>
+ Neg<Output = Self>
+ SignOps
+ Zero
+ One
+ Two
+ F32Fmt { }Expand description
Implemented by all constructs of this library.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".