enum PnmHeaderLine {
Height,
Width,
Depth,
Maxval,
}
Expand description
Single-value lines in a PNM header
Variants§
Trait Implementations§
source§impl Clone for PnmHeaderLine
impl Clone for PnmHeaderLine
source§fn clone(&self) -> PnmHeaderLine
fn clone(&self) -> PnmHeaderLine
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 PnmHeaderLine
impl Debug for PnmHeaderLine
source§impl Display for PnmHeaderLine
impl Display for PnmHeaderLine
source§impl Hash for PnmHeaderLine
impl Hash for PnmHeaderLine
source§impl Ord for PnmHeaderLine
impl Ord for PnmHeaderLine
source§fn cmp(&self, other: &PnmHeaderLine) -> Ordering
fn cmp(&self, other: &PnmHeaderLine) -> 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 PnmHeaderLine
impl PartialEq for PnmHeaderLine
source§fn eq(&self, other: &PnmHeaderLine) -> bool
fn eq(&self, other: &PnmHeaderLine) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PnmHeaderLine
impl PartialOrd for PnmHeaderLine
source§fn partial_cmp(&self, other: &PnmHeaderLine) -> Option<Ordering>
fn partial_cmp(&self, other: &PnmHeaderLine) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for PnmHeaderLine
impl Eq for PnmHeaderLine
impl StructuralPartialEq for PnmHeaderLine
Auto Trait Implementations§
impl Freeze for PnmHeaderLine
impl RefUnwindSafe for PnmHeaderLine
impl Send for PnmHeaderLine
impl Sync for PnmHeaderLine
impl Unpin for PnmHeaderLine
impl UnwindSafe for PnmHeaderLine
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more