Struct wasmparser::CompositeType
source · pub struct CompositeType {
pub inner: CompositeInnerType,
pub shared: bool,
}
Expand description
Represents a composite type in a WebAssembly module.
Fields§
§inner: CompositeInnerType
The type defined inside the composite type.
Is the composite type shared? This is part of the shared-everything-threads proposal.
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.
sourcepub fn unwrap_cont(&self) -> &ContType
pub fn unwrap_cont(&self) -> &ContType
Unwrap a ContType
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<Self>
fn from_reader(reader: &mut BinaryReader<'a>) -> Result<Self>
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 Ord for CompositeType
impl Ord for CompositeType
source§fn cmp(&self, other: &CompositeType) -> Ordering
fn cmp(&self, other: &CompositeType) -> 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 CompositeType
impl PartialEq for CompositeType
source§impl PartialOrd for CompositeType
impl PartialOrd for CompositeType
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<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.