[][src]Struct mmd::pmx::reader::vertex::VertexReader

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

Fields

settings: Settingscount: i32remaining: i32

Methods

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

pub fn new(header: HeaderReader<R>) -> Result<VertexReader<R>, Error>[src]

pub fn next_vertex<I: TryFrom<i8> + TryFrom<i16> + TryFrom<i32>>(
    &mut self
) -> Result<Option<Vertex<I>>, Error>
[src]

pub fn iter<I>(&mut self) -> VertexIterator<R, I>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]