pub struct GoogleFirestoreAdminV1Stats {
pub document_count: Option<i64>,
pub index_count: Option<i64>,
pub size_bytes: Option<i64>,
}Expand description
Backup specific statistics.
This type is not used in any activity, and only used as part of another schema.
Fields§
§document_count: Option<i64>Output only. The total number of documents contained in the backup.
index_count: Option<i64>Output only. The total number of index entries contained in the backup.
size_bytes: Option<i64>Output only. Summation of the size of all documents and index entries in the backup, measured in bytes.
Trait Implementations§
Source§impl Clone for GoogleFirestoreAdminV1Stats
impl Clone for GoogleFirestoreAdminV1Stats
Source§fn clone(&self) -> GoogleFirestoreAdminV1Stats
fn clone(&self) -> GoogleFirestoreAdminV1Stats
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 GoogleFirestoreAdminV1Stats
impl Debug for GoogleFirestoreAdminV1Stats
Source§impl Default for GoogleFirestoreAdminV1Stats
impl Default for GoogleFirestoreAdminV1Stats
Source§fn default() -> GoogleFirestoreAdminV1Stats
fn default() -> GoogleFirestoreAdminV1Stats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleFirestoreAdminV1Stats
impl<'de> Deserialize<'de> for GoogleFirestoreAdminV1Stats
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 Part for GoogleFirestoreAdminV1Stats
Auto Trait Implementations§
impl Freeze for GoogleFirestoreAdminV1Stats
impl RefUnwindSafe for GoogleFirestoreAdminV1Stats
impl Send for GoogleFirestoreAdminV1Stats
impl Sync for GoogleFirestoreAdminV1Stats
impl Unpin for GoogleFirestoreAdminV1Stats
impl UnwindSafe for GoogleFirestoreAdminV1Stats
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