pub trait FloatOpsExpand {
// Required methods
fn __expand_min_method(self, scope: &Scope, other: Self) -> Self;
fn __expand_max_method(self, scope: &Scope, other: Self) -> Self;
fn __expand_clamp_method(self, scope: &Scope, min: Self, max: Self) -> Self;
}Required Methods§
fn __expand_min_method(self, scope: &Scope, other: Self) -> Self
fn __expand_max_method(self, scope: &Scope, other: Self) -> Self
fn __expand_clamp_method(self, scope: &Scope, min: Self, max: Self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".