[][src]Struct chip8_rom_to_opcode::RomData

pub struct RomData<'a> {
    pub counter: usize,
    pub offset: usize,
    // some fields omitted
}

Fields

counter: usizeoffset: usize

Methods

impl<'a> RomData<'a>[src]

pub fn new(data: &'a [u8]) -> RomData<'a>[src]

pub fn get_all_opcodes(&mut self) -> Vec<String>[src]

Get a string containing all opcodes in the data stream.

pub fn get_n_opcodes(&mut self, start: usize, n: usize) -> Vec<String>[src]

Get a string containing the specified number of opcodes, or until the end of the data stream.

Auto Trait Implementations

impl<'a> Send for RomData<'a>

impl<'a> Sync for RomData<'a>

impl<'a> Unpin for RomData<'a>

impl<'a> UnwindSafe for RomData<'a>

impl<'a> RefUnwindSafe for RomData<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]