[][src]Enum nom_obj::parser::obj::ObjLine

pub enum ObjLine {
    Comment(String),
    ObjectName(String),
    GroupName(String),
    MtlLib(String),
    UseMtl(String),
    SmoothShading(String),
    Vertex(f32f32f32Option<f32>),
    VertexParam(f32f32f32),
    Normal(f32f32f32),
    Face(FaceIndexFaceIndexFaceIndex),
    TextureUVW(f32f32Option<f32>),
}

Variants

Comment(String)
ObjectName(String)
GroupName(String)
MtlLib(String)
UseMtl(String)
SmoothShading(String)
Vertex(f32f32f32Option<f32>)
VertexParam(f32f32f32)
Normal(f32f32f32)
TextureUVW(f32f32Option<f32>)

Trait Implementations

impl Debug for ObjLine[src]

impl PartialEq<ObjLine> for ObjLine[src]

impl StructuralPartialEq for ObjLine[src]

Auto Trait Implementations

impl RefUnwindSafe for ObjLine

impl Send for ObjLine

impl Sync for ObjLine

impl Unpin for ObjLine

impl UnwindSafe for ObjLine

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.