Enum wasmtime_environ::wasmparser::RecGroup
source · pub enum RecGroup {
Many(Vec<SubType>),
Single(SubType),
}
Expand description
Represents a recursive type group in a WebAssembly module.
Variants§
Many(Vec<SubType>)
The list of subtypes in the recursive type group.
Single(SubType)
A single subtype in the recursive type group.
Implementations§
source§impl RecGroup
impl RecGroup
sourcepub fn into_types(self) -> impl ExactSizeIterator
pub fn into_types(self) -> impl ExactSizeIterator
Return an iterator over the types in this rec group, giving ownership of the types.
Trait Implementations§
source§impl<'a> FromReader<'a> for RecGroup
impl<'a> FromReader<'a> for RecGroup
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<RecGroup, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<RecGroup, 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 RecGroup
impl Send for RecGroup
impl Sync for RecGroup
impl Unpin for RecGroup
impl UnwindSafe for RecGroup
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