[][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 Eq for DataSource[src]

impl Copy for DataSource[src]

impl PartialEq<DataSource> for DataSource[src]

impl Clone for DataSource[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DataSource[src]

impl Hash for DataSource[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for DataSource

impl Sync for DataSource

Blanket Implementations

impl<T, U> Into 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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.