Trait checked_rs::UInteger
source · pub trait UInteger: 'static + UIntegerLimits + Copy + Default + Eq + Ord + Add + Sub + Mul + Div + Rem + BitAnd + BitOr + BitXor + Shl + Shr {
// Required methods
fn from_u128(value: u128) -> Self;
fn into_u128(self) -> u128;
}
Required Methods§
Object Safety§
This trait is not object safe.