pub enum ReflectImageFormat {
Show 40 variants
Undefined,
RGBA32_FLOAT,
RGBA16_FLOAT,
R32_FLOAT,
RGBA8,
RGBA8_SNORM,
RG32_FLOAT,
RG16_FLOAT,
R11G11B10_FLOAT,
R16_FLOAT,
RGBA16,
RGB10A2,
RG16,
RG8,
R16,
R8,
RGBA16_SNORM,
RG16_SNORM,
RG8_SNORM,
R16_SNORM,
R8_SNORM,
RGBA32_INT,
RGBA16_INT,
RGBA8_INT,
R32_INT,
RG32_INT,
RG16_INT,
RG8_INT,
R16_INT,
R8_INT,
RGBA32_UINT,
RGBA16_UINT,
RGBA8_UINT,
R32_UINT,
RGB10A2_UINT,
RG32_UINT,
RG16_UINT,
RG8_UINT,
R16_UINT,
R8_UINT,
}
Variants§
Undefined
RGBA32_FLOAT
RGBA16_FLOAT
R32_FLOAT
RGBA8
RGBA8_SNORM
RG32_FLOAT
RG16_FLOAT
R11G11B10_FLOAT
R16_FLOAT
RGBA16
RGB10A2
RG16
RG8
R16
R8
RGBA16_SNORM
RG16_SNORM
RG8_SNORM
R16_SNORM
R8_SNORM
RGBA32_INT
RGBA16_INT
RGBA8_INT
R32_INT
RG32_INT
RG16_INT
RG8_INT
R16_INT
R8_INT
RGBA32_UINT
RGBA16_UINT
RGBA8_UINT
R32_UINT
RGB10A2_UINT
RG32_UINT
RG16_UINT
RG8_UINT
R16_UINT
R8_UINT
Trait Implementations§
Source§impl Clone for ReflectImageFormat
impl Clone for ReflectImageFormat
Source§fn clone(&self) -> ReflectImageFormat
fn clone(&self) -> ReflectImageFormat
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReflectImageFormat
impl Debug for ReflectImageFormat
Source§impl Default for ReflectImageFormat
impl Default for ReflectImageFormat
Source§impl PartialEq for ReflectImageFormat
impl PartialEq for ReflectImageFormat
Source§impl Serialize for ReflectImageFormat
impl Serialize for ReflectImageFormat
impl Copy for ReflectImageFormat
impl StructuralPartialEq for ReflectImageFormat
Auto Trait Implementations§
impl Freeze for ReflectImageFormat
impl RefUnwindSafe for ReflectImageFormat
impl Send for ReflectImageFormat
impl Sync for ReflectImageFormat
impl Unpin for ReflectImageFormat
impl UnwindSafe for ReflectImageFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more