#[non_exhaustive]pub struct Stats {
pub size_bytes: i64,
pub document_count: i64,
pub index_count: i64,
/* private fields */
}Expand description
Backup specific statistics.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.size_bytes: i64Output only. Summation of the size of all documents and index entries in the backup, measured in bytes.
document_count: i64Output only. The total number of documents contained in the backup.
index_count: i64Output only. The total number of index entries contained in the backup.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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