Struct libnoentiendo::memory::NullMemory
source · pub struct NullMemory { /* private fields */ }
Expand description
Memory that does nothing when read or written to.
Implementations§
source§impl NullMemory
impl NullMemory
sourcepub fn with_warnings(message: &'static str) -> Self
pub fn with_warnings(message: &'static str) -> Self
Create a new NullMemory that will warn when read or written to.
Trait Implementations§
source§impl Default for NullMemory
impl Default for NullMemory
source§fn default() -> NullMemory
fn default() -> NullMemory
Returns the “default value” for a type. Read more
source§impl Memory for NullMemory
impl Memory for NullMemory
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 NullMemory
impl Send for NullMemory
impl Sync for NullMemory
impl Unpin for NullMemory
impl UnwindSafe for NullMemory
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