Enum spirv::ImageChannelDataType
source · #[repr(u32)]pub enum ImageChannelDataType {
Show 19 variants
SnormInt8 = 0,
SnormInt16 = 1,
UnormInt8 = 2,
UnormInt16 = 3,
UnormShort565 = 4,
UnormShort555 = 5,
UnormInt101010 = 6,
SignedInt8 = 7,
SignedInt16 = 8,
SignedInt32 = 9,
UnsignedInt8 = 10,
UnsignedInt16 = 11,
UnsignedInt32 = 12,
HalfFloat = 13,
Float = 14,
UnormInt24 = 15,
UnormInt101010_2 = 16,
UnsignedIntRaw10EXT = 19,
UnsignedIntRaw12EXT = 20,
}
Expand description
SPIR-V operand kind: ImageChannelDataType
Variants§
SnormInt8 = 0
SnormInt16 = 1
UnormInt8 = 2
UnormInt16 = 3
UnormShort565 = 4
UnormShort555 = 5
UnormInt101010 = 6
SignedInt8 = 7
SignedInt16 = 8
SignedInt32 = 9
UnsignedInt8 = 10
UnsignedInt16 = 11
UnsignedInt32 = 12
HalfFloat = 13
Float = 14
UnormInt24 = 15
UnormInt101010_2 = 16
UnsignedIntRaw10EXT = 19
UnsignedIntRaw12EXT = 20
Implementations§
Trait Implementations§
source§impl Clone for ImageChannelDataType
impl Clone for ImageChannelDataType
source§fn clone(&self) -> ImageChannelDataType
fn clone(&self) -> ImageChannelDataType
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 ImageChannelDataType
impl Debug for ImageChannelDataType
source§impl FromStr for ImageChannelDataType
impl FromStr for ImageChannelDataType
source§impl Hash for ImageChannelDataType
impl Hash for ImageChannelDataType
source§impl Ord for ImageChannelDataType
impl Ord for ImageChannelDataType
source§fn cmp(&self, other: &ImageChannelDataType) -> Ordering
fn cmp(&self, other: &ImageChannelDataType) -> 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 ImageChannelDataType
impl PartialEq for ImageChannelDataType
source§fn eq(&self, other: &ImageChannelDataType) -> bool
fn eq(&self, other: &ImageChannelDataType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ImageChannelDataType
impl PartialOrd for ImageChannelDataType
source§fn partial_cmp(&self, other: &ImageChannelDataType) -> Option<Ordering>
fn partial_cmp(&self, other: &ImageChannelDataType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ImageChannelDataType
impl Eq for ImageChannelDataType
impl StructuralPartialEq for ImageChannelDataType
Auto Trait Implementations§
impl Freeze for ImageChannelDataType
impl RefUnwindSafe for ImageChannelDataType
impl Send for ImageChannelDataType
impl Sync for ImageChannelDataType
impl Unpin for ImageChannelDataType
impl UnwindSafe for ImageChannelDataType
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