Enum cranelift_wasm::wasmparser::CompositeType
source · pub enum CompositeType {
Func(FuncType),
Array(ArrayType),
Struct(StructType),
}Expand description
Represents a composite 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.
Implementations§
source§impl CompositeType
impl CompositeType
sourcepub fn unwrap_func(&self) -> &FuncType
pub fn unwrap_func(&self) -> &FuncType
Unwrap a FuncType or panic.
sourcepub fn unwrap_array(&self) -> &ArrayType
pub fn unwrap_array(&self) -> &ArrayType
Unwrap a ArrayType or panic.
sourcepub fn unwrap_struct(&self) -> &StructType
pub fn unwrap_struct(&self) -> &StructType
Unwrap a StructType or panic.
Trait Implementations§
source§impl Clone for CompositeType
impl Clone for CompositeType
source§fn clone(&self) -> CompositeType
fn clone(&self) -> CompositeType
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 CompositeType
impl Debug for CompositeType
source§impl Display for CompositeType
impl Display for CompositeType
source§impl<'a> FromReader<'a> for CompositeType
impl<'a> FromReader<'a> for CompositeType
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<CompositeType, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<CompositeType, BinaryReaderError>
Attempts to read
Self from the provided binary reader, returning an
error if it is unable to do so.source§impl Hash for CompositeType
impl Hash for CompositeType
source§impl PartialEq for CompositeType
impl PartialEq for CompositeType
source§fn eq(&self, other: &CompositeType) -> bool
fn eq(&self, other: &CompositeType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CompositeType
impl StructuralPartialEq for CompositeType
Auto Trait Implementations§
impl Freeze for CompositeType
impl RefUnwindSafe for CompositeType
impl Send for CompositeType
impl Sync for CompositeType
impl Unpin for CompositeType
impl UnwindSafe for CompositeType
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.