pub struct DbStats {
pub datoms: usize,
pub entities: usize,
pub attributes: usize,
}Expand description
Counts over one database view.
Fields§
§datoms: usizeFacts in the view.
entities: usizeEntities having at least one fact in the view.
attributes: usizeAttributes used by facts in the view.
Trait Implementations§
impl Copy for DbStats
impl Eq for DbStats
impl StructuralPartialEq for DbStats
Auto Trait Implementations§
impl Freeze for DbStats
impl RefUnwindSafe for DbStats
impl Send for DbStats
impl Sync for DbStats
impl Unpin for DbStats
impl UnsafeUnpin for DbStats
impl UnwindSafe for DbStats
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