[−][src]Struct image::pnm::PNMDecoder
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]
fn dimensions(&mut self) -> ImageResult<(u32, u32)>
[src]
fn colortype(&mut self) -> ImageResult<ColorType>
[src]
fn row_len(&mut self) -> ImageResult<usize>
[src]
fn read_scanline(&mut self, _buf: &mut [u8]) -> ImageResult<u32>
[src]
fn read_image(&mut self) -> ImageResult<DecodingResult>
[src]
fn is_animated(&mut self) -> ImageResult<bool>
[src]
fn into_frames(self) -> ImageResult<Frames>
[src]
fn load_rect(
&mut self,
x: u32,
y: u32,
length: u32,
width: u32
) -> ImageResult<Vec<u8>>
[src]
&mut self,
x: u32,
y: u32,
length: u32,
width: u32
) -> ImageResult<Vec<u8>>
Auto Trait Implementations
impl<R> Send for PNMDecoder<R> where
R: Send,
R: Send,
impl<R> Sync for PNMDecoder<R> where
R: Sync,
R: Sync,
impl<R> Unpin for PNMDecoder<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for PNMDecoder<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for PNMDecoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,