pub struct Memories { /* private fields */ }
Expand description
Intermediate representation of all the memories in a module.
Implementations§
Source§impl Memories
impl Memories
Sourcepub fn get_mem_by_id(&self, mem_id: MemoryID) -> Option<&Memory>
pub fn get_mem_by_id(&self, mem_id: MemoryID) -> Option<&Memory>
Get a memory by its MemoryID
Sourcepub fn is_deleted(&self, mem_id: MemoryID) -> bool
pub fn is_deleted(&self, mem_id: MemoryID) -> bool
Check if it’s deleted
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Memories
impl RefUnwindSafe for Memories
impl Send for Memories
impl Sync for Memories
impl Unpin for Memories
impl UnwindSafe for Memories
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