pub enum CIntegerType {
I8,
I16,
I32,
I64,
U8,
U16,
U32,
U64,
}
Expand description
Represents a C integer type
Variants§
Trait Implementations§
Source§impl Clone for CIntegerType
impl Clone for CIntegerType
Source§fn clone(&self) -> CIntegerType
fn clone(&self) -> CIntegerType
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 moreSource§impl Debug for CIntegerType
impl Debug for CIntegerType
Source§impl PartialEq for CIntegerType
impl PartialEq for CIntegerType
impl Copy for CIntegerType
impl Eq for CIntegerType
impl StructuralPartialEq for CIntegerType
Auto Trait Implementations§
impl Freeze for CIntegerType
impl RefUnwindSafe for CIntegerType
impl Send for CIntegerType
impl Sync for CIntegerType
impl Unpin for CIntegerType
impl UnwindSafe for CIntegerType
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