pub enum ImageRepresentation {
MONO,
RGB,
RGBLUT,
MULTI,
NODISPLY,
NVECTOR,
POLAR,
VPH,
YCbCr601,
}
Expand description
Image representation values
Variants§
MONO
Monochrome
RGB
RGB true color
RGBLUT
RGB/LUT for mapped color
MULTI
Multiband imagery
NODISPLY
Not intended for display
NVECTOR
Vectors with cartesian coordinates
POLAR
Vectors with polar coordinates
VPH
SAR video phase history
YCbCr601
Compressed in the ITU-R recommendation
Trait Implementations§
Source§impl Clone for ImageRepresentation
impl Clone for ImageRepresentation
Source§fn clone(&self) -> ImageRepresentation
fn clone(&self) -> ImageRepresentation
Returns a duplicate 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 ImageRepresentation
impl Debug for ImageRepresentation
Source§impl Default for ImageRepresentation
impl Default for ImageRepresentation
Source§fn default() -> ImageRepresentation
fn default() -> ImageRepresentation
Returns the “default value” for a type. Read more
Source§impl Display for ImageRepresentation
impl Display for ImageRepresentation
Source§impl FromStr for ImageRepresentation
impl FromStr for ImageRepresentation
Source§impl Ord for ImageRepresentation
impl Ord for ImageRepresentation
Source§fn cmp(&self, other: &ImageRepresentation) -> Ordering
fn cmp(&self, other: &ImageRepresentation) -> 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 ImageRepresentation
impl PartialEq for ImageRepresentation
Source§impl PartialOrd for ImageRepresentation
impl PartialOrd for ImageRepresentation
impl Copy for ImageRepresentation
impl Eq for ImageRepresentation
impl StructuralPartialEq for ImageRepresentation
Auto Trait Implementations§
impl Freeze for ImageRepresentation
impl RefUnwindSafe for ImageRepresentation
impl Send for ImageRepresentation
impl Sync for ImageRepresentation
impl Unpin for ImageRepresentation
impl UnwindSafe for ImageRepresentation
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