pub struct Limits {
pub vertex_count: usize,
pub face_count: usize,
pub face_vertex_count: usize,
}Expand description
Fields§
§vertex_count: usizeDefines the maximum amount of vertices the parser accepts.
face_count: usizeDefines the maximum amount of faces the parser accepts.
face_vertex_count: usizeDefines the maximum amount of vertices per face the parser accepts.
Implementations§
Trait Implementations§
impl Copy for Limits
impl Eq for Limits
impl StructuralPartialEq for Limits
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnwindSafe for Limits
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