pub struct SmallUint(_);Expand description
An integer-like type that will store small integers up to u128 inline. Larger integers are
represented as a slice to a sequence of base 232 digits represented as a *mut u32.
Trait Implementations
impl Eq for SmallUint
impl StructuralEq for SmallUint
impl StructuralPartialEq for SmallUint
Auto Trait Implementations
impl RefUnwindSafe for SmallUint
impl !Send for SmallUint
impl !Sync for SmallUint
impl Unpin for SmallUint
impl UnwindSafe for SmallUint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more