pub struct NamespaceStats {
pub tenant_id: String,
pub namespace: String,
pub active_records: u64,
pub archived_records: u64,
pub deleted_records: u64,
pub suppressed_records: u64,
pub pinned_records: u64,
}Fields§
§tenant_id: String§namespace: String§active_records: u64§archived_records: u64§deleted_records: u64§suppressed_records: u64§pinned_records: u64Trait Implementations§
Source§impl Clone for NamespaceStats
impl Clone for NamespaceStats
Source§fn clone(&self) -> NamespaceStats
fn clone(&self) -> NamespaceStats
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 NamespaceStats
impl Debug for NamespaceStats
Source§impl<'de> Deserialize<'de> for NamespaceStats
impl<'de> Deserialize<'de> for NamespaceStats
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
Source§impl PartialEq for NamespaceStats
impl PartialEq for NamespaceStats
Source§fn eq(&self, other: &NamespaceStats) -> bool
fn eq(&self, other: &NamespaceStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NamespaceStats
impl Serialize for NamespaceStats
impl Eq for NamespaceStats
impl StructuralPartialEq for NamespaceStats
Auto Trait Implementations§
impl Freeze for NamespaceStats
impl RefUnwindSafe for NamespaceStats
impl Send for NamespaceStats
impl Sync for NamespaceStats
impl Unpin for NamespaceStats
impl UnsafeUnpin for NamespaceStats
impl UnwindSafe for NamespaceStats
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