pub enum Action<F32 = f32, F64 = f64> {
Invoke {
module: Option<String>,
field: String,
args: Vec<Value<F32, F64>>,
},
Get {
module: Option<String>,
field: String,
},
}Expand description
Description of action that should be performed on a wasm module.
Variants§
Trait Implementations§
Source§impl<F32: PartialOrd, F64: PartialOrd> PartialOrd for Action<F32, F64>
impl<F32: PartialOrd, F64: PartialOrd> PartialOrd for Action<F32, F64>
impl<F32, F64> StructuralPartialEq for Action<F32, F64>
Auto Trait Implementations§
impl<F32, F64> Freeze for Action<F32, F64>
impl<F32, F64> RefUnwindSafe for Action<F32, F64>where
F32: RefUnwindSafe,
F64: RefUnwindSafe,
impl<F32, F64> Send for Action<F32, F64>
impl<F32, F64> Sync for Action<F32, F64>
impl<F32, F64> Unpin for Action<F32, F64>
impl<F32, F64> UnwindSafe for Action<F32, F64>where
F32: UnwindSafe,
F64: UnwindSafe,
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