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