pub trait NormalOut2 {
// Required methods
fn __add(self, rhs: Self) -> Self;
fn __sub(self, rhs: Self) -> Self;
fn __mul_add(self, a: Self, b: Self) -> Self;
fn __mul(self, rhs: Self) -> Self;
fn __rem(self, rhs: Self) -> Self;
fn __max(self, rhs: Self) -> Self;
fn __min(self, rhs: Self) -> Self;
fn __clamp(self, min: Self, max: Self) -> Self;
}Expand description
internal trait for normal out
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".