pub struct PpmEncoder { /* private fields */ }
Expand description
Encoder type for a PPM image.
Implementations§
Source§impl PpmEncoder
impl PpmEncoder
Sourcepub fn new_plaintext_encoder() -> Self
pub fn new_plaintext_encoder() -> Self
Creates a new PPM format to encode plain-text. This results in very large file sizes so isn’t recommended in general use
Trait Implementations§
Source§impl Clone for PpmEncoder
impl Clone for PpmEncoder
Source§fn clone(&self) -> PpmEncoder
fn clone(&self) -> PpmEncoder
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 PpmEncoder
impl Debug for PpmEncoder
Source§impl Default for PpmEncoder
impl Default for PpmEncoder
Source§impl<T, U> Encoder<T, U, RGB> for PpmEncoderwhere
U: Data<Elem = T>,
T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive,
Implements the encoder trait for the PpmEncoder.
impl<T, U> Encoder<T, U, RGB> for PpmEncoderwhere
U: Data<Elem = T>,
T: Copy + Clone + Num + NumAssignOps + NumCast + PartialOrd + Display + PixelBound + FromPrimitive,
Implements the encoder trait for the PpmEncoder.
The ColourModel type argument is locked to RGB - this prevents calling
RGB::into::
Source§impl Hash for PpmEncoder
impl Hash for PpmEncoder
Source§impl PartialEq for PpmEncoder
impl PartialEq for PpmEncoder
impl Copy for PpmEncoder
impl Eq for PpmEncoder
impl StructuralPartialEq for PpmEncoder
Auto Trait Implementations§
impl Freeze for PpmEncoder
impl RefUnwindSafe for PpmEncoder
impl Send for PpmEncoder
impl Sync for PpmEncoder
impl Unpin for PpmEncoder
impl UnwindSafe for PpmEncoder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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