pub trait FloatOpsExpand {
// Required methods
fn __expand_min_method(self, scope: &mut Scope, other: Self) -> Self;
fn __expand_max_method(self, scope: &mut Scope, other: Self) -> Self;
fn __expand_clamp_method(
self,
scope: &mut Scope,
min: Self,
max: Self,
) -> Self;
}Required Methods§
fn __expand_min_method(self, scope: &mut Scope, other: Self) -> Self
fn __expand_max_method(self, scope: &mut Scope, other: Self) -> Self
fn __expand_clamp_method(self, scope: &mut 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", so this trait is not object safe.