Trait ReadAnimatedValue

pub trait ReadAnimatedValue: Clone + 'static {
    type Output;

    // Required method
    fn value(&self) -> Self::Output;
}

Required Associated Types§

type Output

Required Methods§

fn value(&self) -> Self::Output

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl<T1> ReadAnimatedValue for (T1,)

§

impl<T1, T2> ReadAnimatedValue for (T1, T2)

§

impl<T1, T2, T3> ReadAnimatedValue for (T1, T2, T3)

§

impl<T1, T2, T3, T4> ReadAnimatedValue for (T1, T2, T3, T4)

§

impl<T1, T2, T3, T4, T5> ReadAnimatedValue for (T1, T2, T3, T4, T5)

§

impl<T1, T2, T3, T4, T5, T6> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6)

§

impl<T1, T2, T3, T4, T5, T6, T7> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7)

§

impl<T1, T2, T3, T4, T5, T6, T7, T8> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7, T8)

§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7, T8, T9)

§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)

§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)

§

impl<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> ReadAnimatedValue for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)

Implementors§