pub enum DexBasicTypes {
Boolean = 0,
Byte = 1,
Char = 2,
Double = 3,
Float = 4,
Int = 5,
Long = 6,
Short = 7,
Void = 8,
FundamentalNone = 99,
}Expand description
Type alias for Shuriken’s hfundamental_e
Enum with the basic DEX types
Variants§
Boolean = 0
Byte = 1
Char = 2
Double = 3
Float = 4
Int = 5
Long = 6
Short = 7
Void = 8
FundamentalNone = 99
Trait Implementations§
Source§impl Clone for DexBasicTypes
impl Clone for DexBasicTypes
Source§fn clone(&self) -> DexBasicTypes
fn clone(&self) -> DexBasicTypes
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 DexBasicTypes
impl Debug for DexBasicTypes
Source§impl PartialEq for DexBasicTypes
impl PartialEq for DexBasicTypes
impl Copy for DexBasicTypes
impl StructuralPartialEq for DexBasicTypes
Auto Trait Implementations§
impl Freeze for DexBasicTypes
impl RefUnwindSafe for DexBasicTypes
impl Send for DexBasicTypes
impl Sync for DexBasicTypes
impl Unpin for DexBasicTypes
impl UnwindSafe for DexBasicTypes
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