[][src]Struct zeerust::z80::io::BufOutput

pub struct BufOutput { /* fields omitted */ }

BufOutput is a simple Output device that recieves output and appends it to an internal vector.

Methods

impl BufOutput[src]

pub fn result(&self) -> Vec<u8>[src]

All of the outputs recieved from the processor, most recent last.

Trait Implementations

impl OutputDevice for BufOutput[src]

fn output(&self, val: u8)[src]

Write a byte to the end of the internal buffer

impl Default for BufOutput[src]

Auto Trait Implementations

impl Send for BufOutput

impl Sync for BufOutput

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]