Struct MemoryMappings
pub struct MemoryMappings(/* private fields */);Expand description
A structure that can contain up to 64 memory mappings.
! NOTE: This is not an “absurd” amount of memory mappings for a single instruction.
The enter instruction can access up to 63 individual memory locations.
Implementations§
§impl MemoryMappings
impl MemoryMappings
Trait Implementations§
§impl FromIterator<MemoryMapping> for MemoryMappings
impl FromIterator<MemoryMapping> for MemoryMappings
§fn from_iter<T: IntoIterator<Item = MemoryMapping>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = MemoryMapping>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations§
impl Freeze for MemoryMappings
impl RefUnwindSafe for MemoryMappings
impl Send for MemoryMappings
impl Sync for MemoryMappings
impl Unpin for MemoryMappings
impl UnsafeUnpin for MemoryMappings
impl UnwindSafe for MemoryMappings
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