pub enum SimpleDataType {
Unknown,
Zero,
NonZero,
Bool,
Pointer(Pointer),
I32(I32),
U32(U32),
}
Variants§
Trait Implementations§
Source§impl Clone for SimpleDataType
impl Clone for SimpleDataType
Source§fn clone(&self) -> SimpleDataType
fn clone(&self) -> SimpleDataType
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 SimpleDataType
impl Debug for SimpleDataType
impl Copy for SimpleDataType
Auto Trait Implementations§
impl Freeze for SimpleDataType
impl RefUnwindSafe for SimpleDataType
impl Send for SimpleDataType
impl Sync for SimpleDataType
impl Unpin for SimpleDataType
impl UnwindSafe for SimpleDataType
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