pub enum VariableType {
AnyFunc,
I32,
I64,
F32,
F64,
}
Expand description
Variable type.
Variants§
Trait Implementations§
Source§impl Clone for VariableType
impl Clone for VariableType
Source§fn clone(&self) -> VariableType
fn clone(&self) -> VariableType
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 VariableType
impl Debug for VariableType
Source§impl From<TableElementType> for VariableType
impl From<TableElementType> for VariableType
Source§fn from(tt: TableElementType) -> VariableType
fn from(tt: TableElementType) -> VariableType
Converts to this type from the input type.
Source§impl From<ValueType> for VariableType
impl From<ValueType> for VariableType
Source§fn from(vt: ValueType) -> VariableType
fn from(vt: ValueType) -> VariableType
Converts to this type from the input type.
Source§impl PartialEq for VariableType
impl PartialEq for VariableType
impl Copy for VariableType
impl StructuralPartialEq for VariableType
Auto Trait Implementations§
impl Freeze for VariableType
impl RefUnwindSafe for VariableType
impl Send for VariableType
impl Sync for VariableType
impl Unpin for VariableType
impl UnwindSafe for VariableType
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