pub struct TtlStatsResponse {
pub namespaces: Vec<TtlStats>,
pub total_with_ttl: u64,
pub total_expired: u64,
}Expand description
TTL statistics response
Fields§
§namespaces: Vec<TtlStats>§total_with_ttl: u64§total_expired: u64Trait Implementations§
Source§impl Clone for TtlStatsResponse
impl Clone for TtlStatsResponse
Source§fn clone(&self) -> TtlStatsResponse
fn clone(&self) -> TtlStatsResponse
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 TtlStatsResponse
impl Debug for TtlStatsResponse
Source§impl<'de> Deserialize<'de> for TtlStatsResponse
impl<'de> Deserialize<'de> for TtlStatsResponse
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 TtlStatsResponse
impl RefUnwindSafe for TtlStatsResponse
impl Send for TtlStatsResponse
impl Sync for TtlStatsResponse
impl Unpin for TtlStatsResponse
impl UnsafeUnpin for TtlStatsResponse
impl UnwindSafe for TtlStatsResponse
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