[][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 read

pub fn into_inner(self) -> (R, PNMHeader)[src]

Extract the reader and header after an image has been read.

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

Trait Implementations

impl<'a, R: 'a + Read> ImageDecoder<'a> for PNMDecoder<R>[src]

type Reader = PnmReader<R>

The type of reader produced by into_reader.

Auto Trait Implementations

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

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

Blanket Implementations

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

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

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

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

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

impl<T> SetParameter 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.