pub struct FlatTypes<'a> {
pub memory32: &'a [FlatType],
pub memory64: &'a [FlatType],
}
Expand description
Flat representation of a type in just core wasm types.
Fields§
§memory32: &'a [FlatType]
The flat representation of this type in 32-bit memories.
memory64: &'a [FlatType]
The flat representation of this type in 64-bit memories.
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FlatTypes<'a>
impl<'a> RefUnwindSafe for FlatTypes<'a>
impl<'a> Send for FlatTypes<'a>
impl<'a> Sync for FlatTypes<'a>
impl<'a> Unpin for FlatTypes<'a>
impl<'a> UnwindSafe for FlatTypes<'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