pub trait SvdFloat:
Float
+ FromPrimitive
+ Debug
+ Send
+ Sync
+ Zero
+ One
+ AddAssign
+ SubAssign
+ MulAssign
+ Neg<Output = Self>
+ Sum {
// Required methods
fn eps() -> Self;
fn eps34() -> Self;
fn compare(a: Self, b: Self) -> bool;
}Required Methods§
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.