[][src]Enum ether_dream::dac::DataSource

pub enum DataSource {
    NetworkStreaming,
    IldaPlayback(IldaPlaybackFlags),
    InternalAbstractGenerator(InternalAbstractGeneratorFlags),
}

The data source in use by a DAC.

Variants

NetworkStreaming

Network streaming (the protocol implemented in this library).

IldaPlayback(IldaPlaybackFlags)

ILDA playback from an SD card.

InternalAbstractGenerator(InternalAbstractGeneratorFlags)

The DAC's internal abstract generator.

Methods

impl DataSource[src]

pub fn from_protocol(source: u8, flags: u16) -> Option<Self>[src]

Create a DataSource enum from the lower-level protocol representation.

Returns None if the given source byte is not known.

pub fn to_protocol(&self) -> (u8, u16)[src]

Convert the LightEngine enum to its lower-level protocol representation.

Returns the source and the source_flags fields respectively.

Trait Implementations

impl Clone for DataSource[src]

impl Copy for DataSource[src]

impl Debug for DataSource[src]

impl Eq for DataSource[src]

impl Hash for DataSource[src]

impl PartialEq<DataSource> for DataSource[src]

impl StructuralEq for DataSource[src]

impl StructuralPartialEq for DataSource[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.