[][src]Struct spectrusty::bus::debug::DebugBusDevice

pub struct DebugBusDevice<D> { /* fields omitted */ }

A passthrough BusDevice that outputs I/O data read and written by CPU using log debug.

Trait Implementations

impl<D> BusDevice for DebugBusDevice<D> where
    D: BusDevice,
    <D as BusDevice>::Timestamp: Debug
[src]

type Timestamp = <D as BusDevice>::Timestamp

A type used as a time-stamp.

type NextDevice = D

A type of the next device in a daisy chain.

pub fn write_io(
    &mut self,
    port: u16,
    data: u8,
    timestamp: <DebugBusDevice<D> as BusDevice>::Timestamp
) -> Option<u16>
[src]

Called by the control unit on IO::write_io.

impl<D> Clone for DebugBusDevice<D> where
    D: Clone
[src]

impl<D> Debug for DebugBusDevice<D> where
    D: Debug
[src]

impl<D> Default for DebugBusDevice<D> where
    D: Default
[src]

impl<'de, D> Deserialize<'de> for DebugBusDevice<D> where
    D: Deserialize<'de> + Default
[src]

impl<D> PassByAyAudioBusDevice for DebugBusDevice<D>[src]

impl<D> Serialize for DebugBusDevice<D> where
    D: Serialize
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for DebugBusDevice<D> where
    D: RefUnwindSafe
[src]

impl<D> Send for DebugBusDevice<D> where
    D: Send
[src]

impl<D> Sync for DebugBusDevice<D> where
    D: Sync
[src]

impl<D> Unpin for DebugBusDevice<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for DebugBusDevice<D> where
    D: UnwindSafe
[src]

Blanket Implementations

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

impl<D, N> AyAudioBusDevice for D where
    D: BusDevice<NextDevice = N> + PassByAyAudioBusDevice,
    N: BusDevice<Timestamp = <D as BusDevice>::Timestamp> + AyAudioBusDevice,
    <D as BusDevice>::Timestamp: Into<i32>, 
[src]

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

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

impl<T> Conv for T

impl<T> Conv for T

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> FmtForward for T

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

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

impl<S, T> IntoSample<S> for T where
    S: FromSample<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,