pub trait SbUnsignedInt: Clone + Ord {
// Required methods
fn const_0() -> Self;
fn const_1() -> Self;
fn const_2() -> Self;
// Provided methods
fn frac_0() -> Fraction<Self> { ... }
fn frac_oo() -> Fraction<Self> { ... }
}Required Methods§
Provided Methods§
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.
Implementations on Foreign Types§
Source§impl SbUnsignedInt for u8
impl SbUnsignedInt for u8
Source§impl SbUnsignedInt for u16
impl SbUnsignedInt for u16
Source§impl SbUnsignedInt for u32
impl SbUnsignedInt for u32
Source§impl SbUnsignedInt for u64
impl SbUnsignedInt for u64
Source§impl SbUnsignedInt for u128
impl SbUnsignedInt for u128
Source§impl SbUnsignedInt for usize
impl SbUnsignedInt for usize
Source§impl SbUnsignedInt for BigUint
Available on crate feature bigint only.
impl SbUnsignedInt for BigUint
Available on crate feature
bigint only.