Enum nitf_rs::headers::image_hdr::PixelValueType
source · pub enum PixelValueType {
C,
R,
B,
SI,
INT,
}
Expand description
Pixel Value type options
Variants§
C
ComplexFloat, 32 or 64 bits, real then imaginary
R
Float, 32 or 64 bits
B
Bi-level, single bit
SI
2’s complement signed integer, 8, 12, 16, 32, or 64 bits
INT
Integer, 8, 12, 16, 32, or 64 bits
Trait Implementations§
source§impl Clone for PixelValueType
impl Clone for PixelValueType
source§fn clone(&self) -> PixelValueType
fn clone(&self) -> PixelValueType
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 PixelValueType
impl Debug for PixelValueType
source§impl Default for PixelValueType
impl Default for PixelValueType
source§fn default() -> PixelValueType
fn default() -> PixelValueType
Returns the “default value” for a type. Read more
source§impl FromStr for PixelValueType
impl FromStr for PixelValueType
source§impl PartialEq for PixelValueType
impl PartialEq for PixelValueType
source§fn eq(&self, other: &PixelValueType) -> bool
fn eq(&self, other: &PixelValueType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PixelValueType
impl StructuralEq for PixelValueType
impl StructuralPartialEq for PixelValueType
Auto Trait Implementations§
impl RefUnwindSafe for PixelValueType
impl Send for PixelValueType
impl Sync for PixelValueType
impl Unpin for PixelValueType
impl UnwindSafe for PixelValueType
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