Enum rog_anime::ActionData[][src]

pub enum ActionData {
    Animation(AnimeGif),
    Image(Box<AnimeDataBuffer>),
    Pause(Duration),
    AudioEq,
    SystemInfo,
    TimeDate,
    Matrix,
}

All the possible AniMe actions that can be used. The enum is intended to be used in a array allowing the user to cycle through a series of actions.

Variants

Animation(AnimeGif)

Full gif sequence. Immutable.

Basic image, can have properties changed and image updated via those properties

Pause(Duration)

A pause to be used between sequences

AudioEq

Placeholder

SystemInfo

Placeholder

TimeDate

Placeholder

Matrix

Placeholder

Trait Implementations

impl Debug for ActionData[src]

impl<'de> Deserialize<'de> for ActionData[src]

impl Serialize for ActionData[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.