pub(crate) enum PrimitiveRepr {
U8,
U16,
U32,
U64,
U128,
Usize,
I8,
I16,
I32,
I64,
I128,
Isize,
}Expand description
repr(Int)
Variants§
Trait Implementations§
Source§impl Clone for PrimitiveRepr
impl Clone for PrimitiveRepr
Source§fn clone(&self) -> PrimitiveRepr
fn clone(&self) -> PrimitiveRepr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PrimitiveRepr
impl Inhabited for PrimitiveRepr
Auto Trait Implementations§
impl Freeze for PrimitiveRepr
impl RefUnwindSafe for PrimitiveRepr
impl Send for PrimitiveRepr
impl Sync for PrimitiveRepr
impl Unpin for PrimitiveRepr
impl UnwindSafe for PrimitiveRepr
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