pub struct SpaceStats {
pub episodes: i64,
pub entities: i64,
pub statements: i64,
pub contradictions: usize,
}Expand description
Aggregate counts for a space.
Fields§
§episodes: i64Number of episodes recorded in the space.
entities: i64Number of entities (excluding merged-away) in the space.
statements: i64Number of statements in the space.
contradictions: usizeNumber of contradicted statements in the space.
Trait Implementations§
Source§impl Clone for SpaceStats
impl Clone for SpaceStats
Source§fn clone(&self) -> SpaceStats
fn clone(&self) -> SpaceStats
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 SpaceStats
impl Debug for SpaceStats
Source§impl<'de> Deserialize<'de> for SpaceStats
impl<'de> Deserialize<'de> for SpaceStats
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 SpaceStats
Source§impl PartialEq for SpaceStats
impl PartialEq for SpaceStats
Source§impl Serialize for SpaceStats
impl Serialize for SpaceStats
impl StructuralPartialEq for SpaceStats
Auto Trait Implementations§
impl Freeze for SpaceStats
impl RefUnwindSafe for SpaceStats
impl Send for SpaceStats
impl Sync for SpaceStats
impl Unpin for SpaceStats
impl UnsafeUnpin for SpaceStats
impl UnwindSafe for SpaceStats
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