[][src]Struct image::tga::TGADecoder

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

The representation of a TGA decoder

Methods

impl<R: Read + Seek> TGADecoder<R>[src]

pub fn new(r: R) -> ImageResult<TGADecoder<R>>[src]

Create a new decoder that decodes from the stream r

Trait Implementations

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

type Reader = TGAReader<R>

The type of reader produced by into_reader.

fn row_bytes(&self) -> u64[src]

Returns the number of bytes in a single row of the image. All decoders will pad image rows to a byte boundary. Read more

fn total_bytes(&self) -> u64[src]

Returns the total number of bytes in the image.

fn read_image_with_progress<F: Fn(Progress)>(
    self,
    progress_callback: F
) -> ImageResult<Vec<u8>>
[src]

Same as read_image but periodically calls the provided callback to give updates on loading progress. Read more

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?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.