pub struct Memory<'s> {
pub start: usize,
pub id: Option<&'s str>,
pub ty: MemType,
pub import: Option<Import<'s>>,
}
Fields§
§start: usize
§id: Option<&'s str>
§ty: MemType
§import: Option<Import<'s>>
Auto Trait Implementations§
impl<'s> Freeze for Memory<'s>
impl<'s> RefUnwindSafe for Memory<'s>
impl<'s> Send for Memory<'s>
impl<'s> Sync for Memory<'s>
impl<'s> Unpin for Memory<'s>
impl<'s> UnwindSafe for Memory<'s>
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