[][src]Enum load_image::Rotate

pub enum Rotate {
    FlipX,
    D90,
    D90FlipX,
    D180,
    D180FlipX,
    D270,
    D270FlipX,
}

Variants

FlipX
D90
D90FlipX
D180
D180FlipX
D270
D270FlipX

Trait Implementations

impl Clone for Rotate[src]

impl Copy for Rotate[src]

impl Eq for Rotate[src]

impl PartialEq<Rotate> for Rotate[src]

impl StructuralEq for Rotate[src]

impl StructuralPartialEq for Rotate[src]

Auto Trait Implementations

impl RefUnwindSafe for Rotate

impl Send for Rotate

impl Sync for Rotate

impl Unpin for Rotate

impl UnwindSafe for Rotate

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.