pub struct ObjSet {
pub material_library: Option<String>,
pub objects: Vec<Object>,
}
Expand description
A set of objects, as listed in an .obj
file.
Fields§
§material_library: Option<String>
Which material library to use.
objects: Vec<Object>
The set of objects.
Trait Implementations§
impl StructuralPartialEq for ObjSet
Auto Trait Implementations§
impl Freeze for ObjSet
impl RefUnwindSafe for ObjSet
impl Send for ObjSet
impl Sync for ObjSet
impl Unpin for ObjSet
impl UnwindSafe for ObjSet
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