pub struct HarCacheEntry {
pub expires: Option<String>,
pub last_access: String,
pub e_tag: String,
pub hit_count: i32,
}Expand description
HAR cache entry.
Fields§
§expires: Option<String>Expiration timestamp.
last_access: StringLast access timestamp.
e_tag: StringETag.
hit_count: i32Hit count.
Trait Implementations§
Source§impl Clone for HarCacheEntry
impl Clone for HarCacheEntry
Source§fn clone(&self) -> HarCacheEntry
fn clone(&self) -> HarCacheEntry
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 HarCacheEntry
impl Debug for HarCacheEntry
Source§impl<'de> Deserialize<'de> for HarCacheEntry
impl<'de> Deserialize<'de> for HarCacheEntry
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 HarCacheEntry
impl RefUnwindSafe for HarCacheEntry
impl Send for HarCacheEntry
impl Sync for HarCacheEntry
impl Unpin for HarCacheEntry
impl UnwindSafe for HarCacheEntry
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