pub struct DataStoreSnapshot {
pub path: String,
pub entries: u64,
pub memory_bytes: u64,
}Expand description
DataStoreSnapshot Store-level snapshot metrics.
Fields§
§path: String§entries: u64§memory_bytes: u64Trait Implementations§
Source§impl CandidType for DataStoreSnapshot
impl CandidType for DataStoreSnapshot
Source§impl Clone for DataStoreSnapshot
impl Clone for DataStoreSnapshot
Source§fn clone(&self) -> DataStoreSnapshot
fn clone(&self) -> DataStoreSnapshot
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 DataStoreSnapshot
impl Debug for DataStoreSnapshot
Source§impl Default for DataStoreSnapshot
impl Default for DataStoreSnapshot
Source§fn default() -> DataStoreSnapshot
fn default() -> DataStoreSnapshot
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataStoreSnapshot
impl<'de> Deserialize<'de> for DataStoreSnapshot
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
Auto Trait Implementations§
impl Freeze for DataStoreSnapshot
impl RefUnwindSafe for DataStoreSnapshot
impl Send for DataStoreSnapshot
impl Sync for DataStoreSnapshot
impl Unpin for DataStoreSnapshot
impl UnwindSafe for DataStoreSnapshot
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