pub enum ImageRepresentationBand {
DEFAULT,
M,
R,
G,
B,
LU,
Y,
Cb,
Cr,
}
Expand description
Image representation values
Variants§
DEFAULT
Default spaces
M
Monochrome
R
RGB
G
B
LU
LUT Reperesentation
Y
Luminance
Cb
Chrominance Blue
Cr
Chrominance Red
Trait Implementations§
Source§impl Clone for ImageRepresentationBand
impl Clone for ImageRepresentationBand
Source§fn clone(&self) -> ImageRepresentationBand
fn clone(&self) -> ImageRepresentationBand
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 ImageRepresentationBand
impl Debug for ImageRepresentationBand
Source§impl Default for ImageRepresentationBand
impl Default for ImageRepresentationBand
Source§fn default() -> ImageRepresentationBand
fn default() -> ImageRepresentationBand
Returns the “default value” for a type. Read more
Source§impl Display for ImageRepresentationBand
impl Display for ImageRepresentationBand
Source§impl FromStr for ImageRepresentationBand
impl FromStr for ImageRepresentationBand
Source§impl Ord for ImageRepresentationBand
impl Ord for ImageRepresentationBand
Source§fn cmp(&self, other: &ImageRepresentationBand) -> Ordering
fn cmp(&self, other: &ImageRepresentationBand) -> 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 ImageRepresentationBand
impl PartialEq for ImageRepresentationBand
Source§impl PartialOrd for ImageRepresentationBand
impl PartialOrd for ImageRepresentationBand
impl Copy for ImageRepresentationBand
impl Eq for ImageRepresentationBand
impl StructuralPartialEq for ImageRepresentationBand
Auto Trait Implementations§
impl Freeze for ImageRepresentationBand
impl RefUnwindSafe for ImageRepresentationBand
impl Send for ImageRepresentationBand
impl Sync for ImageRepresentationBand
impl Unpin for ImageRepresentationBand
impl UnwindSafe for ImageRepresentationBand
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