[][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<R: Read> ImageDecoder for PNMDecoder<R>[src][+]

fn is_animated(&mut self) -> ImageResult<bool>[src][]

Returns true if the image is animated

fn into_frames(self) -> ImageResult<Frames>[src][]

Returns the frames of the image Read more

fn load_rect(
    &mut self,
    x: u32,
    y: u32,
    length: u32,
    width: u32
) -> ImageResult<Vec<u8>>
[src][]

Decodes a specific region of the image, represented by the rectangle starting from x and y and having length and width Read more

Auto Trait Implementations

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

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

Blanket Implementations

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

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src][]

Sets value as a parameter of self.