pub trait ExtNumConst {
type Num;
const NUM_ZERO: Option<Self::Num>;
const NUM_ONE: Self::Num;
const NUM_TWO: Self::Num;
const NUM_THREE: Self::Num;
const NUM_NEG_ONE: Option<Self::Num>;
const NUM_MIN_POSITIVE: Self::Num;
const NUM_MAX_NEGATIVE: Option<Self::Num>;
const NUM_MAX_POWER_OF_TWO: Self::Num;
}
Expand description
Fundamental numeric constants for both integer and floating-point types.
Required Associated Constants§
Sourceconst NUM_NEG_ONE: Option<Self::Num>
const NUM_NEG_ONE: Option<Self::Num>
The additive inverse of ONE
(-1
), if applicable.
Sourceconst NUM_MIN_POSITIVE: Self::Num
const NUM_MIN_POSITIVE: Self::Num
The smallest representable positive value.
Sourceconst NUM_MAX_NEGATIVE: Option<Self::Num>
const NUM_MAX_NEGATIVE: Option<Self::Num>
The greatest representable negative value, if applicable.
Sourceconst NUM_MAX_POWER_OF_TWO: Self::Num
const NUM_MAX_POWER_OF_TWO: Self::Num
The maximum power of two within the type’s range.
Required Associated Types§
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.