pub struct ModelSummary {
pub cityobject_count: u32,
pub geometry_count: u32,
pub geometry_template_count: u32,
pub vertex_count: u32,
pub template_vertex_count: u32,
pub uv_vertex_count: u32,
pub semantic_count: u32,
pub material_count: u32,
pub texture_count: u32,
pub symbol_count: u32,
pub has_metadata: bool,
pub has_transform: bool,
}Expand description
Scalar summary over an owned city model.
Fields§
§cityobject_count: u32§geometry_count: u32§geometry_template_count: u32§vertex_count: u32§template_vertex_count: u32§uv_vertex_count: u32§semantic_count: u32§material_count: u32§texture_count: u32§symbol_count: u32§has_metadata: bool§has_transform: boolTrait Implementations§
Source§impl Clone for ModelSummary
impl Clone for ModelSummary
Source§fn clone(&self) -> ModelSummary
fn clone(&self) -> ModelSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 ModelSummary
impl Debug for ModelSummary
Source§impl PartialEq for ModelSummary
impl PartialEq for ModelSummary
impl Copy for ModelSummary
impl Eq for ModelSummary
impl StructuralPartialEq for ModelSummary
Auto Trait Implementations§
impl Freeze for ModelSummary
impl RefUnwindSafe for ModelSummary
impl Send for ModelSummary
impl Sync for ModelSummary
impl Unpin for ModelSummary
impl UnsafeUnpin for ModelSummary
impl UnwindSafe for ModelSummary
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