Struct libnoentiendo::systems::basic::BasicSystem
source · pub struct BasicSystem { /* private fields */ }
Expand description
A system which only operates in text mode, for basic testing.
Trait Implementations§
source§impl BuildableSystem<RomFile, ()> for BasicSystem
impl BuildableSystem<RomFile, ()> for BasicSystem
source§impl System for BasicSystem
impl System for BasicSystem
source§fn get_cpu_mut(&mut self) -> Box<&mut dyn Cpu>
fn get_cpu_mut(&mut self) -> Box<&mut dyn Cpu>
Return a mutable reference to the CPU used in this system.
source§fn render(&mut self, _framebuffer: &mut [u8], _config: WindowConfig)
fn render(&mut self, _framebuffer: &mut [u8], _config: WindowConfig)
Render the current state of the system to the given framebuffer.
fn attach_trace_handler(&mut self, handler: Box<dyn TraceHandler>)
Auto Trait Implementations§
impl !RefUnwindSafe for BasicSystem
impl !Send for BasicSystem
impl !Sync for BasicSystem
impl Unpin for BasicSystem
impl !UnwindSafe for BasicSystem
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