pub enum StructuralType {
Func(FuncType),
Array(ArrayType),
Struct(StructType),
}
Expand description
Represents a structural type in a WebAssembly module.
Variants§
Func(FuncType)
The type is for a function.
Array(ArrayType)
The type is for an array.
Struct(StructType)
The type is for a struct.
Trait Implementations§
source§impl Clone for StructuralType
impl Clone for StructuralType
source§fn clone(&self) -> StructuralType
fn clone(&self) -> StructuralType
Returns a copy 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 StructuralType
impl Debug for StructuralType
source§impl<'a> FromReader<'a> for StructuralType
impl<'a> FromReader<'a> for StructuralType
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<StructuralType, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<StructuralType, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.Auto Trait Implementations§
impl RefUnwindSafe for StructuralType
impl Send for StructuralType
impl Sync for StructuralType
impl Unpin for StructuralType
impl UnwindSafe for StructuralType
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