pub struct DomainStats {
pub entity_count: u32,
pub page_count: u32,
}Expand description
Simple statistics for a semantic domain.
Fields§
§entity_count: u32Total number of entities in this domain.
page_count: u32Total number of pages allocated for this domain.
Trait Implementations§
Source§impl Clone for DomainStats
impl Clone for DomainStats
Source§fn clone(&self) -> DomainStats
fn clone(&self) -> DomainStats
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 DomainStats
impl Debug for DomainStats
Source§impl Default for DomainStats
impl Default for DomainStats
Source§fn default() -> DomainStats
fn default() -> DomainStats
Returns the “default value” for a type. Read more
impl Copy for DomainStats
Auto Trait Implementations§
impl Freeze for DomainStats
impl RefUnwindSafe for DomainStats
impl Send for DomainStats
impl Sync for DomainStats
impl Unpin for DomainStats
impl UnwindSafe for DomainStats
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