pub enum ValType {
U8,
Bool,
U16,
Flags,
}Variants§
U8
Specifies a stack argument of type u8.
Bool
Specifies a stack argument of type bool. (Assumed to occupy 8 bits on
the stack like u8).
U16
Specifies a stack argument of type u16.
Flags
Specifies a stack argument of type Flags. (Assumed to occupy 8 bits on
the stack like u8).
Implementations§
Trait Implementations§
impl Copy for ValType
impl Eq for ValType
impl StructuralPartialEq for ValType
Auto Trait Implementations§
impl Freeze for ValType
impl RefUnwindSafe for ValType
impl Send for ValType
impl Sync for ValType
impl Unpin for ValType
impl UnwindSafe for ValType
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