[][src]Struct spectrusty::bus::parallel::Plus3CentronicsBusDevice

pub struct Plus3CentronicsBusDevice<P, D> {
    pub parallel: P,
    // some fields omitted
}

Connects the ParallelPortDevice emulator as a BusDevice via +3 Centronics Port.

Substitute P with the type implementing ParallelPortDevice.

Fields

parallel: P

Provides direct access to the ParallelPortDevice.

Trait Implementations

impl<P, D> BusDevice for Plus3CentronicsBusDevice<P, D> where
    D: BusDevice,
    P: ParallelPortDevice<Timestamp = <D as BusDevice>::Timestamp> + Debug,
    <D as BusDevice>::Timestamp: Copy
[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.

impl<P, D> Clone for Plus3CentronicsBusDevice<P, D> where
    D: Clone,
    P: Clone
[src]

impl<P, D> Debug for Plus3CentronicsBusDevice<P, D> where
    D: Debug,
    P: Debug
[src]

impl<P, D> Default for Plus3CentronicsBusDevice<P, D> where
    D: Default,
    P: Default
[src]

impl<P, D> Deref for Plus3CentronicsBusDevice<P, D>[src]

type Target = P

The resulting type after dereferencing.

impl<P, D> DerefMut for Plus3CentronicsBusDevice<P, D>[src]

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

impl<P, D> Display for Plus3CentronicsBusDevice<P, D>[src]

impl<P, D> PassByAyAudioBusDevice for Plus3CentronicsBusDevice<P, D>[src]

impl<P, D> Serialize for Plus3CentronicsBusDevice<P, D> where
    D: Serialize,
    P: Serialize
[src]

Auto Trait Implementations

impl<P, D> RefUnwindSafe for Plus3CentronicsBusDevice<P, D> where
    D: RefUnwindSafe,
    P: RefUnwindSafe
[src]

impl<P, D> Send for Plus3CentronicsBusDevice<P, D> where
    D: Send,
    P: Send
[src]

impl<P, D> Sync for Plus3CentronicsBusDevice<P, D> where
    D: Sync,
    P: Sync
[src]

impl<P, D> Unpin for Plus3CentronicsBusDevice<P, D> where
    D: Unpin,
    P: Unpin
[src]

impl<P, D> UnwindSafe for Plus3CentronicsBusDevice<P, D> where
    D: UnwindSafe,
    P: 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, D> NamedBusDevice<T> for D where
    D: Display + BusDevice<Timestamp = T, NextDevice = NullDevice<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> ToString for T where
    T: Display + ?Sized
[src]

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>,