pub enum ObjLine {
Comment(String),
ObjectName(String),
GroupName(String),
MtlLib(String),
UseMtl(String),
SmoothShading(String),
Vertex(f32, f32, f32, Option<f32>),
VertexParam(f32, f32, f32),
Normal(f32, f32, f32),
Face(FaceIndex, FaceIndex, FaceIndex),
TextureUVW(f32, f32, Option<f32>),
}
Variants§
Comment(String)
ObjectName(String)
GroupName(String)
MtlLib(String)
UseMtl(String)
SmoothShading(String)
Vertex(f32, f32, f32, Option<f32>)
VertexParam(f32, f32, f32)
Normal(f32, f32, f32)
Face(FaceIndex, FaceIndex, FaceIndex)
TextureUVW(f32, f32, Option<f32>)
Trait Implementations§
impl StructuralPartialEq for ObjLine
Auto Trait Implementations§
impl Freeze for ObjLine
impl RefUnwindSafe for ObjLine
impl Send for ObjLine
impl Sync for ObjLine
impl Unpin for ObjLine
impl UnwindSafe for ObjLine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more