[][src]Enum nom_obj::parser::mtl::MtlLine

pub enum MtlLine {
    Comment(String),
    NewMtl(String),
    AmbientMap(String),
    DiffuseMap(String),
    SpecularMap(String),
    BumpMap(String),
    AmbientColor(f32f32f32),
    DiffuseColor(f32f32f32),
    SpecularColor(f32f32f32),
    KeColor(f32f32f32),
    TransmissionFilter(f32f32f32),
    OpticalDensity(f32),
    SpecularExponent(f32),
    TransparencyD(f32),
    TransparencyTr(f32),
    IlluminationModel(u32),
    Sharpness(u32),
    Blank,
}

Variants

Comment(String)
NewMtl(String)
AmbientMap(String)
DiffuseMap(String)
SpecularMap(String)
BumpMap(String)
AmbientColor(f32f32f32)
DiffuseColor(f32f32f32)
SpecularColor(f32f32f32)
KeColor(f32f32f32)
TransmissionFilter(f32f32f32)
OpticalDensity(f32)
SpecularExponent(f32)
TransparencyD(f32)
TransparencyTr(f32)
IlluminationModel(u32)
Sharpness(u32)
Blank

Trait Implementations

impl Debug for MtlLine[src]

impl PartialEq<MtlLine> for MtlLine[src]

impl StructuralPartialEq for MtlLine[src]

Auto Trait Implementations

impl RefUnwindSafe for MtlLine

impl Send for MtlLine

impl Sync for MtlLine

impl Unpin for MtlLine

impl UnwindSafe for MtlLine

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.