#[repr(u32)]pub enum ImageChannelDataType {
Show 17 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,
}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
Implementations§
Source§impl ImageChannelDataType
impl ImageChannelDataType
pub fn from(val: u32) -> Option<ImageChannelDataType>
Trait Implementations§
Source§impl Clone for ImageChannelDataType
impl Clone for ImageChannelDataType
Source§fn clone(&self) -> ImageChannelDataType
fn clone(&self) -> ImageChannelDataType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageChannelDataType
Source§impl Debug for ImageChannelDataType
impl Debug for ImageChannelDataType
Source§impl Hash for ImageChannelDataType
impl Hash for ImageChannelDataType
Source§impl PartialEq for ImageChannelDataType
impl PartialEq for ImageChannelDataType
Source§fn eq(&self, other: &ImageChannelDataType) -> bool
fn eq(&self, other: &ImageChannelDataType) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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