[][src]Trait lochnes::nes::NesIo

pub trait NesIo {
    type Video: Video;
    type Input: Input;
    fn video(&self) -> &Self::Video;
fn input(&self) -> &Self::Input; }

Associated Types

type Video: Video

type Input: Input

Loading content...

Required methods

fn video(&self) -> &Self::Video

fn input(&self) -> &Self::Input

Loading content...

Implementations on Foreign Types

impl<'a, I> NesIo for &'a I where
    I: NesIo
[src]

type Video = I::Video

type Input = I::Input

Loading content...

Implementors

impl<V, I> NesIo for NesIoWith<V, I> where
    V: Video,
    I: Input
[src]

type Video = V

type Input = I

Loading content...