Skip to main content

System

Struct System 

Source
pub struct System<D> { /* private fields */ }
Expand description

Represents the entire emulator context.

Implementations§

Source§

impl<D> System<D>
where D: Debugger + 'static,

Source

pub fn new<T>(cfg: Config, rom: &[u8], hw: T, dbg: D) -> Self
where T: Hardware + 'static,

Create a new emulator context.

Source

pub fn poll(&mut self) -> bool

Run a single step of emulation. This function needs to be called repeatedly until it returns false. Returning false indicates the end of emulation, and the functions shouldn’t be called again.

Auto Trait Implementations§

§

impl<D> Freeze for System<D>

§

impl<D> !RefUnwindSafe for System<D>

§

impl<D> !Send for System<D>

§

impl<D> !Sync for System<D>

§

impl<D> Unpin for System<D>

§

impl<D> UnsafeUnpin for System<D>

§

impl<D> !UnwindSafe for System<D>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.