Struct mmd::pmx::reader::texture::TextureReader[][src]

pub struct TextureReader<R> {
    pub settings: Settings,
    pub count: i32,
    pub remaining: i32,
    // some fields omitted
}

Fields

settings: Settingscount: i32remaining: i32

Implementations

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

pub fn new(mut s: SurfaceReader<R>) -> Result<TextureReader<R>>[src]

pub fn next(&mut self) -> Result<Option<String>>[src]

pub fn iter(&mut self) -> TextureIterator<'_, R>

Notable traits for TextureIterator<'_, R>

impl<R: Read> Iterator for TextureIterator<'_, R> type Item = Result<String>;
[src]

Auto Trait Implementations

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

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

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

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

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