pub struct MeshStats {
pub total_meshes: usize,
pub total_vertices: u32,
pub total_triangles: u32,
pub total_submeshes: u32,
pub average_vertices: f32,
pub average_triangles: f32,
pub meshes_with_blend_shapes: usize,
pub compressed_meshes: usize,
pub streaming_meshes: usize,
pub low_poly_meshes: usize,
pub medium_poly_meshes: usize,
pub high_poly_meshes: usize,
}Expand description
Mesh processing statistics
Fields§
§total_meshes: usize§total_vertices: u32§total_triangles: u32§total_submeshes: u32§average_vertices: f32§average_triangles: f32§meshes_with_blend_shapes: usize§compressed_meshes: usize§streaming_meshes: usize§low_poly_meshes: usize§medium_poly_meshes: usize§high_poly_meshes: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for MeshStats
impl RefUnwindSafe for MeshStats
impl Send for MeshStats
impl Sync for MeshStats
impl Unpin for MeshStats
impl UnwindSafe for MeshStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().