pub struct SmallInt(_);Expand description
An integer-like type that will store small integers up to i128 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 SmallInt
impl StructuralEq for SmallInt
impl StructuralPartialEq for SmallInt
Auto Trait Implementations
impl RefUnwindSafe for SmallInt
impl !Send for SmallInt
impl !Sync for SmallInt
impl Unpin for SmallInt
impl UnwindSafe for SmallInt
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