#[repr(u8)]
pub enum MoveType {
Move,
Jump,
}
Expand description
Move/Jump, for use in Move
Variants
Move
Jump
Trait Implementations
sourceimpl FromWasmAbi for MoveType
impl FromWasmAbi for MoveType
sourceimpl IntoWasmAbi for MoveType
impl IntoWasmAbi for MoveType
sourceimpl OptionFromWasmAbi for MoveType
impl OptionFromWasmAbi for MoveType
sourceimpl OptionIntoWasmAbi for MoveType
impl OptionIntoWasmAbi for MoveType
sourceimpl WasmDescribe for MoveType
impl WasmDescribe for MoveType
impl Copy for MoveType
impl Eq for MoveType
impl StructuralEq for MoveType
impl StructuralPartialEq for MoveType
Auto Trait Implementations
impl RefUnwindSafe for MoveType
impl Send for MoveType
impl Sync for MoveType
impl Unpin for MoveType
impl UnwindSafe for MoveType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
. Read more