Enum wasmparser::TypeVec
source · pub enum TypeVec<'a> {
Unnamed(ComponentValType),
Named(Box<[(&'a str, ComponentValType)]>),
}
Expand description
Represents the vector of types in a component function’s parameters or results.
Variants§
Unnamed(ComponentValType)
The type vector contains a single, unnamed type.
Named(Box<[(&'a str, ComponentValType)]>)
The type vector contains zero or more named types.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for TypeVec<'a>
impl<'a> Send for TypeVec<'a>
impl<'a> Sync for TypeVec<'a>
impl<'a> Unpin for TypeVec<'a>
impl<'a> UnwindSafe for TypeVec<'a>
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