pub struct RequestCachedResponse {
pub cache_id: CacheId,
pub request_url: String,
pub request_headers: Vec<Header>,
}Fields§
§cache_id: CacheId§request_url: String§request_headers: Vec<Header>Trait Implementations§
Source§impl Clone for RequestCachedResponse
impl Clone for RequestCachedResponse
Source§fn clone(&self) -> RequestCachedResponse
fn clone(&self) -> RequestCachedResponse
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 RequestCachedResponse
impl Debug for RequestCachedResponse
Source§impl<'de> Deserialize<'de> for RequestCachedResponse
impl<'de> Deserialize<'de> for RequestCachedResponse
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 Method for RequestCachedResponse
impl Method for RequestCachedResponse
const NAME: &'static str = "CacheStorage.requestCachedResponse"
type ReturnObject = RequestCachedResponseReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
Source§impl PartialEq for RequestCachedResponse
impl PartialEq for RequestCachedResponse
Source§impl Serialize for RequestCachedResponse
impl Serialize for RequestCachedResponse
impl StructuralPartialEq for RequestCachedResponse
Auto Trait Implementations§
impl Freeze for RequestCachedResponse
impl RefUnwindSafe for RequestCachedResponse
impl Send for RequestCachedResponse
impl Sync for RequestCachedResponse
impl Unpin for RequestCachedResponse
impl UnwindSafe for RequestCachedResponse
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