Struct fbx_direct::reader::EventReader[][src]

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

A wrapper around an std::io::Read instance which provides pull-based FBX parsing.

Methods

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

Creates a new reader, consuming the given stream.

Creates a new reader with provided configuration, consuming the given stream.

Pulls and returns next FBX event from the stream.

Trait Implementations

impl<R: Read> IntoIterator for EventReader<R>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Important traits for Events<R>

Consumes EventReader and returns an iterator (Events) over it.

Auto Trait Implementations

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

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