pub struct GeometryStats {
pub mesh_count: usize,
pub total_vertices: u64,
pub total_elements: u64,
pub region_count: usize,
}Fields§
§mesh_count: usize§total_vertices: u64§total_elements: u64§region_count: usizeTrait Implementations§
Source§impl Clone for GeometryStats
impl Clone for GeometryStats
Source§fn clone(&self) -> GeometryStats
fn clone(&self) -> GeometryStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GeometryStats
impl Debug for GeometryStats
Source§impl<'de> Deserialize<'de> for GeometryStats
impl<'de> Deserialize<'de> for GeometryStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GeometryStats
Source§impl PartialEq for GeometryStats
impl PartialEq for GeometryStats
Source§fn eq(&self, other: &GeometryStats) -> bool
fn eq(&self, other: &GeometryStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GeometryStats
impl Serialize for GeometryStats
impl StructuralPartialEq for GeometryStats
Auto Trait Implementations§
impl Freeze for GeometryStats
impl RefUnwindSafe for GeometryStats
impl Send for GeometryStats
impl Sync for GeometryStats
impl Unpin for GeometryStats
impl UnsafeUnpin for GeometryStats
impl UnwindSafe for GeometryStats
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