[][src]Enum fbxcel::pull_parser::v7400::Event

pub enum Event<'a, R: 'a> {
    StartNode(StartNode<'a, R>),
    EndNode,
    EndFbx(Result<Box<FbxFooter>>),
}

Parser event.

Variants

StartNode(StartNode<'a, R>)

Start of a node.

EndNode

End of a node.

EndFbx(Result<Box<FbxFooter>>)

End of an FBX document.

This will contain Ok(_) if the the FBX footer is succssfully read, contain Err(_) if the parser failed to load the FBX footer.

Trait Implementations

impl<'a, R: Debug + 'a> Debug for Event<'a, R>[src]

Auto Trait Implementations

impl<'a, R> !Send for Event<'a, R>

impl<'a, R> !Sync for Event<'a, R>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.