[][src]Struct image::pnm::PNMDecoder

pub struct PNMDecoder<R> { /* fields omitted */ }

PNM decoder

Methods

impl<R: Read> PNMDecoder<R>[src]

pub fn new(read: R) -> ImageResult<PNMDecoder<R>>[src]

Create a new decoder that decodes from the stream r

impl<R: Read> PNMDecoder<R>[src]

pub fn subtype(&self) -> PNMSubtype[src]

Get the pnm subtype, depending on the magic constant contained in the header

pub fn encoding(&self) -> SampleEncoding[src]

Whether samples are stored as binary or as decimal ascii

Trait Implementations

impl<R: Read> ImageDecoder for PNMDecoder<R>[src]

Auto Trait Implementations

impl<R> Send for PNMDecoder<R> where
    R: Send

impl<R> Sync for PNMDecoder<R> where
    R: Sync

impl<R> Unpin for PNMDecoder<R> where
    R: Unpin

impl<R> UnwindSafe for PNMDecoder<R> where
    R: UnwindSafe

impl<R> RefUnwindSafe for PNMDecoder<R> where
    R: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T[src]