pub struct RequestServedFromCacheParams {
pub request_id: RequestId,
}Expand description
Fired if request ended up loading from cache. requestServedFromCache
Fields§
§request_id: RequestIdRequest identifier.
Trait Implementations§
Source§impl Clone for RequestServedFromCacheParams
impl Clone for RequestServedFromCacheParams
Source§fn clone(&self) -> RequestServedFromCacheParams
fn clone(&self) -> RequestServedFromCacheParams
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 RequestServedFromCacheParams
impl Debug for RequestServedFromCacheParams
Source§impl<'de> Deserialize<'de> for RequestServedFromCacheParams
impl<'de> Deserialize<'de> for RequestServedFromCacheParams
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
Source§impl PartialEq for RequestServedFromCacheParams
impl PartialEq for RequestServedFromCacheParams
Source§fn eq(&self, other: &RequestServedFromCacheParams) -> bool
fn eq(&self, other: &RequestServedFromCacheParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RequestServedFromCacheParams
Auto Trait Implementations§
impl Freeze for RequestServedFromCacheParams
impl RefUnwindSafe for RequestServedFromCacheParams
impl Send for RequestServedFromCacheParams
impl Sync for RequestServedFromCacheParams
impl Unpin for RequestServedFromCacheParams
impl UnsafeUnpin for RequestServedFromCacheParams
impl UnwindSafe for RequestServedFromCacheParams
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