pub struct SmallUint(/* private fields */);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.
Implementations§
Trait Implementations§
Source§impl PartialOrd for SmallUint
impl PartialOrd for SmallUint
impl Eq for SmallUint
Auto Trait Implementations§
impl Freeze for SmallUint
impl RefUnwindSafe for SmallUint
impl !Send for SmallUint
impl !Sync for SmallUint
impl Unpin for SmallUint
impl UnwindSafe for SmallUint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more