Struct libnoentiendo::memory::BranchMemory
source · pub struct BranchMemory { /* private fields */ }
Expand description
Maps several Memory objects into a single contiguous address space. Each mapped object is assigned a starting address, and reads and writes will have the starting address subtracted from them before being passed to the underlying Memory object.
Implementations§
Trait Implementations§
source§impl Default for BranchMemory
impl Default for BranchMemory
source§fn default() -> BranchMemory
fn default() -> BranchMemory
Returns the “default value” for a type. Read more
source§impl Memory for BranchMemory
impl Memory for BranchMemory
source§fn read(&mut self, address: u16) -> u8
fn read(&mut self, address: u16) -> u8
Read a byte from this memory at the given address.
Implementations may trigger side effects as a result of this read.
source§fn write(&mut self, address: u16, value: u8)
fn write(&mut self, address: u16, value: u8)
Write a byte to this memory at the given address.
Auto Trait Implementations§
impl !RefUnwindSafe for BranchMemory
impl !Send for BranchMemory
impl !Sync for BranchMemory
impl Unpin for BranchMemory
impl !UnwindSafe for BranchMemory
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