pub struct InspectCacheEntry {
pub cache_control: Option<String>,
pub cached_at: OffsetDateTime,
pub document: InspectDocument,
pub etag: Option<String>,
pub final_url: Url,
pub last_modified: Option<String>,
}Fields§
§cache_control: Option<String>§cached_at: OffsetDateTime§document: InspectDocument§etag: Option<String>§final_url: Url§last_modified: Option<String>Trait Implementations§
Source§impl Clone for InspectCacheEntry
impl Clone for InspectCacheEntry
Source§fn clone(&self) -> InspectCacheEntry
fn clone(&self) -> InspectCacheEntry
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 InspectCacheEntry
impl Debug for InspectCacheEntry
Source§impl PartialEq for InspectCacheEntry
impl PartialEq for InspectCacheEntry
impl StructuralPartialEq for InspectCacheEntry
Auto Trait Implementations§
impl Freeze for InspectCacheEntry
impl RefUnwindSafe for InspectCacheEntry
impl Send for InspectCacheEntry
impl Sync for InspectCacheEntry
impl Unpin for InspectCacheEntry
impl UnsafeUnpin for InspectCacheEntry
impl UnwindSafe for InspectCacheEntry
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