Enum openexr_sys::CEXR_PixelType
source · #[repr(u32)]
pub enum CEXR_PixelType {
UINT,
HALF,
FLOAT,
}
Expand description
Describes the datatype of an image channel.
UINT
: 32-bit unsigned integer.HALF
: 16-bit floating point (conforming to IEEE 754).FLOAT
: 32-bit floating point (conforming to IEEE 754)
Variants
UINT
HALF
FLOAT
Trait Implementations
sourceimpl Clone for CEXR_PixelType
impl Clone for CEXR_PixelType
sourcefn clone(&self) -> CEXR_PixelType
fn clone(&self) -> CEXR_PixelType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CEXR_PixelType
impl Debug for CEXR_PixelType
sourceimpl Hash for CEXR_PixelType
impl Hash for CEXR_PixelType
sourceimpl PartialEq<CEXR_PixelType> for CEXR_PixelType
impl PartialEq<CEXR_PixelType> for CEXR_PixelType
sourcefn eq(&self, other: &CEXR_PixelType) -> bool
fn eq(&self, other: &CEXR_PixelType) -> bool
impl Copy for CEXR_PixelType
impl Eq for CEXR_PixelType
impl StructuralEq for CEXR_PixelType
impl StructuralPartialEq for CEXR_PixelType
Auto Trait Implementations
impl RefUnwindSafe for CEXR_PixelType
impl Send for CEXR_PixelType
impl Sync for CEXR_PixelType
impl Unpin for CEXR_PixelType
impl UnwindSafe for CEXR_PixelType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more