Enum basis_universal::transcoding::TextureFormat[][src]

#[repr(i32)]pub enum TextureFormat {
    Invalid,
    ETC1,
    ETC1S,
    ETC2,
    ETC2_RGBA,
    ETC2_ALPHA,
    BC1,
    BC3,
    BC4,
    BC5,
    BC7,
    ASTC4x4,
    PVRTC1_4_RGB,
    PVRTC1_4_RGBA,
    ATC_RGB,
    ATC_RGBA_INTERPOLATED_ALPHA,
    cFXT1_RGB,
    cPVRTC2_4_RGBA,
    cETC2_R11_EAC,
    cETC2_RG11_EAC,
    cUASTC4x4,
    cBC1_NV,
    cBC1_AMD,
    cRGBA32,
    cRGB565,
    cBGR565,
    cRGBA4444,
    cABGR4444,
}

Variants

Invalid
ETC1
ETC1S
ETC2
ETC2_RGBA
ETC2_ALPHA
BC1
BC3
BC4
BC5
BC7
ASTC4x4
PVRTC1_4_RGB
PVRTC1_4_RGBA
ATC_RGB
ATC_RGBA_INTERPOLATED_ALPHA
cFXT1_RGB
cPVRTC2_4_RGBA
cETC2_R11_EAC
cETC2_RG11_EAC
cUASTC4x4
cBC1_NV
cBC1_AMD
cRGBA32
cRGB565
cBGR565
cRGBA4444
cABGR4444

Trait Implementations

impl Clone for TextureFormat[src]

impl Copy for TextureFormat[src]

impl Debug for TextureFormat[src]

impl From<i32> for TextureFormat[src]

impl Into<i32> for TextureFormat[src]

impl PartialEq<TextureFormat> for TextureFormat[src]

impl StructuralPartialEq for TextureFormat[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> 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.