Struct radiant::Loader[][src]

pub struct Loader<R> {
    pub width: usize,
    pub height: usize,
    // some fields omitted
}

A struct that represents an image in the process of being loaded.

Fields

width: usize

The width of the image, in pixels.

height: usize

The height of the image, in pixels.

Implementations

impl<R: BufRead> Loader<R>[src]

pub fn new(reader: R) -> Result<Self, IoError>[src]

Construct a new Loader. This will consume the header from the provided reader.

pub fn scanlines(self) -> ScanlinesLoader<R>[src]

Convert this loader into an ScanlinesLoader, which lets you load the image one scanline at a time.

pub fn load_image(self) -> Result<Image, IoError>[src]

Load an entire Image at once.

Auto Trait Implementations

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

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

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

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

impl<R> UnwindSafe for Loader<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, 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.