pub struct RequestCachedResponse {
pub method: RequestCachedResponseMethod,
pub params: RequestCachedResponseParams,
}Expand description
Fetches cache entry. requestCachedResponse
Fields§
§method: RequestCachedResponseMethod§params: RequestCachedResponseParamsImplementations§
Source§impl RequestCachedResponse
impl RequestCachedResponse
pub fn builder() -> RequestCachedResponseBuilder
Source§impl RequestCachedResponse
impl RequestCachedResponse
pub const IDENTIFIER: &'static str = "CacheStorage.requestCachedResponse"
pub fn identifier(&self) -> &'static str
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 CommandResult for RequestCachedResponse
impl CommandResult for RequestCachedResponse
type Result = RequestCachedResponseResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§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 From<RequestCachedResponse> for BrowserProtocolCommands
impl From<RequestCachedResponse> for BrowserProtocolCommands
Source§fn from(v: RequestCachedResponse) -> Self
fn from(v: RequestCachedResponse) -> Self
Converts to this type from the input type.
Source§impl From<RequestCachedResponse> for CacheStorageCommands
impl From<RequestCachedResponse> for CacheStorageCommands
Source§fn from(v: RequestCachedResponse) -> Self
fn from(v: RequestCachedResponse) -> Self
Converts to this type from the input type.
Source§impl From<RequestCachedResponse> for Command
impl From<RequestCachedResponse> for Command
Source§fn from(v: RequestCachedResponse) -> Self
fn from(v: RequestCachedResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestCachedResponse
impl PartialEq for RequestCachedResponse
Source§impl Serialize for RequestCachedResponse
impl Serialize for RequestCachedResponse
Source§impl TryFrom<BrowserProtocolCommands> for RequestCachedResponse
impl TryFrom<BrowserProtocolCommands> for RequestCachedResponse
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <RequestCachedResponse as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RequestCachedResponse as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<CacheStorageCommands> for RequestCachedResponse
impl TryFrom<CacheStorageCommands> for RequestCachedResponse
Source§type Error = CacheStorageCommands
type Error = CacheStorageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: CacheStorageCommands,
) -> Result<Self, <RequestCachedResponse as TryFrom<CacheStorageCommands>>::Error>
fn try_from( e: CacheStorageCommands, ) -> Result<Self, <RequestCachedResponse as TryFrom<CacheStorageCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RequestCachedResponse
impl TryFrom<Command> 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 UnsafeUnpin 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