Trait AtLeast16Bit

Source
pub trait AtLeast16Bit: BaseArithmetic + From<u16> { }
Expand description

A meta trait for arithmetic.

Arithmetic types do all the usual stuff you’d expect numbers to do. They are guaranteed to be able to represent at least u16 values without loss, hence the trait implies From<u16> and smaller integers. All other conversions are fallible.

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.

Implementors§