[][src]Enum ether_dream::dac::stream::QueuedCommand

pub enum QueuedCommand {
    PrepareStream,
    Begin(Begin),
    PointRate(PointRate),
    Data(Range<usize>),
    Stop,
    EmergencyStop,
    ClearEmergencyStop,
    Ping,
}

A runtime representation of any of the possible commands.

Variants

PrepareStream
Begin(Begin)
PointRate(PointRate)
Data(Range<usize>)
Stop
EmergencyStop
ClearEmergencyStop
Ping

Trait Implementations

impl Clone for QueuedCommand[src]

impl Debug for QueuedCommand[src]

impl Eq for QueuedCommand[src]

impl Hash for QueuedCommand[src]

impl PartialEq<QueuedCommand> for QueuedCommand[src]

impl StructuralEq for QueuedCommand[src]

impl StructuralPartialEq for QueuedCommand[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.