pub trait TryIntoLoopAnimationDirection {
    type Error;

    fn try_into_LoopAnimationDirection(
        self
    ) -> Result<LoopAnimationDirection, Self::Error>; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors