Struct image::codecs::dxt::DxtDecoder[][src]

pub struct DxtDecoder<R: Read> { /* fields omitted */ }

DXT decoder

Implementations

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

pub fn new(
    r: R,
    width: u32,
    height: u32,
    variant: DXTVariant
) -> Result<DxtDecoder<R>, ImageError>
[src]

Create a new DXT decoder that decodes from the stream r. As DXT is often stored as raw buffers with the width/height somewhere else the width and height of the image need to be passed in width and height, as well as the DXT variant in variant. width and height are required to be powers of 2 and at least 4. otherwise an error will be returned

Trait Implementations

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

type Reader = DxtReader<R>

The type of reader produced by into_reader.

impl<'a, R: 'a + Read + Seek> ImageDecoderExt<'a> for DxtDecoder<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for DxtDecoder<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for DxtDecoder<R> where
    R: Send
[src]

impl<R> Sync for DxtDecoder<R> where
    R: Sync
[src]

impl<R> Unpin for DxtDecoder<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for DxtDecoder<R> where
    R: UnwindSafe
[src]

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> Pointable for T

type Init = T

The type for initializers.

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.