pub enum SizedFormat {
Show 61 variants
R8,
R8_SNORM,
R16,
R16_SNORM,
RG8,
RG8_SNORM,
RG16,
RG16_SNORM,
R3_G3_B2,
RGB4,
RGB5,
RGB8,
RGB8_SNORM,
RGB10,
RGB12,
RGB16_SNORM,
RGBA2,
RGBA4,
RGB5_A1,
RGBA8,
RGBA8_SNORM,
RGB10_A2,
RGB10_A2UI,
RGBA12,
RGBA16,
SRGB8,
SRGB8_ALPHA8,
R16F,
RG16F,
RGB16F,
RGBA16F,
R32F,
RG32F,
RGB32F,
RGBA32F,
R11F_G11F_B10F,
RGB9_E5,
R8I,
R8UI,
R16I,
R16UI,
R32I,
R32UI,
RG8I,
RG8UI,
RG16I,
RG16UI,
RG32I,
RG32UI,
RGB8I,
RGB8UI,
RGB16I,
RGB16UI,
RGB32I,
RGB32UI,
RGBA8I,
RGBA8UI,
RGBA16I,
RGBA16UI,
RGBA32I,
RGBA32UI,
}
Variants§
R8
R8_SNORM
R16
R16_SNORM
RG8
RG8_SNORM
RG16
RG16_SNORM
R3_G3_B2
RGB4
RGB5
RGB8
RGB8_SNORM
RGB10
RGB12
RGB16_SNORM
RGBA2
RGBA4
RGB5_A1
RGBA8
RGBA8_SNORM
RGB10_A2
RGB10_A2UI
RGBA12
RGBA16
SRGB8
SRGB8_ALPHA8
R16F
RG16F
RGB16F
RGBA16F
R32F
RG32F
RGB32F
RGBA32F
R11F_G11F_B10F
RGB9_E5
R8I
R8UI
R16I
R16UI
R32I
R32UI
RG8I
RG8UI
RG16I
RG16UI
RG32I
RG32UI
RGB8I
RGB8UI
RGB16I
RGB16UI
RGB32I
RGB32UI
RGBA8I
RGBA8UI
RGBA16I
RGBA16UI
RGBA32I
RGBA32UI
Trait Implementations§
Source§impl Clone for SizedFormat
impl Clone for SizedFormat
Source§fn clone(&self) -> SizedFormat
fn clone(&self) -> SizedFormat
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 SizedFormat
impl Debug for SizedFormat
Source§impl Hash for SizedFormat
impl Hash for SizedFormat
Source§impl Ord for SizedFormat
impl Ord for SizedFormat
Source§fn cmp(&self, other: &SizedFormat) -> Ordering
fn cmp(&self, other: &SizedFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SizedFormat
impl PartialEq for SizedFormat
Source§impl PartialOrd for SizedFormat
impl PartialOrd for SizedFormat
impl Copy for SizedFormat
impl Eq for SizedFormat
impl StructuralPartialEq for SizedFormat
Auto Trait Implementations§
impl Freeze for SizedFormat
impl RefUnwindSafe for SizedFormat
impl Send for SizedFormat
impl Sync for SizedFormat
impl Unpin for SizedFormat
impl UnwindSafe for SizedFormat
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