[][src]Enum rvg::Animation

pub enum Animation {
    Done,
    Jump,
    Linear,
    ExpA(f32),
    ExpB(f32),
    Fade,
    Layer,
}

Variants

Done

Must be the last value.

Jump

No animation

Linear

Constant speed

ExpA(f32)

Faster at beginning and end of animation(amount_faster: f32)

ExpB(f32)

Slower at beginning and end of animation

Fade

Fade

Layer

SrcOver each frame without clearing

Trait Implementations

impl PartialEq<Animation> for Animation[src]

impl StructuralPartialEq for Animation[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, 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>,