Enum wasmparser::CompositeInnerType
source · pub enum CompositeInnerType {
Func(FuncType),
Array(ArrayType),
Struct(StructType),
Cont(ContType),
}
Expand description
A CompositeType
can contain one of these types.
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.
Cont(ContType)
The type is for a continuation.
Trait Implementations§
source§impl Clone for CompositeInnerType
impl Clone for CompositeInnerType
source§fn clone(&self) -> CompositeInnerType
fn clone(&self) -> CompositeInnerType
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 CompositeInnerType
impl Debug for CompositeInnerType
source§impl Hash for CompositeInnerType
impl Hash for CompositeInnerType
source§impl Ord for CompositeInnerType
impl Ord for CompositeInnerType
source§fn cmp(&self, other: &CompositeInnerType) -> Ordering
fn cmp(&self, other: &CompositeInnerType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CompositeInnerType
impl PartialEq for CompositeInnerType
source§impl PartialOrd for CompositeInnerType
impl PartialOrd for CompositeInnerType
impl Eq for CompositeInnerType
impl StructuralPartialEq for CompositeInnerType
Auto Trait Implementations§
impl Freeze for CompositeInnerType
impl RefUnwindSafe for CompositeInnerType
impl Send for CompositeInnerType
impl Sync for CompositeInnerType
impl Unpin for CompositeInnerType
impl UnwindSafe for CompositeInnerType
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.