pub struct ClearBrowserCache {
pub method: ClearBrowserCacheMethod,
pub params: ClearBrowserCacheParams,
}Expand description
Clears browser cache. clearBrowserCache
Fields§
§method: ClearBrowserCacheMethod§params: ClearBrowserCacheParamsImplementations§
Source§impl ClearBrowserCache
impl ClearBrowserCache
pub fn builder() -> ClearBrowserCacheBuilder
Source§impl ClearBrowserCache
impl ClearBrowserCache
pub const IDENTIFIER: &'static str = "Network.clearBrowserCache"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearBrowserCache
impl Clone for ClearBrowserCache
Source§fn clone(&self) -> ClearBrowserCache
fn clone(&self) -> ClearBrowserCache
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 ClearBrowserCache
impl CommandResult for ClearBrowserCache
type Result = ClearBrowserCacheResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearBrowserCache
impl Debug for ClearBrowserCache
Source§impl<'de> Deserialize<'de> for ClearBrowserCache
impl<'de> Deserialize<'de> for ClearBrowserCache
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<ClearBrowserCache> for BrowserProtocolCommands
impl From<ClearBrowserCache> for BrowserProtocolCommands
Source§fn from(v: ClearBrowserCache) -> Self
fn from(v: ClearBrowserCache) -> Self
Converts to this type from the input type.
Source§impl From<ClearBrowserCache> for Command
impl From<ClearBrowserCache> for Command
Source§fn from(v: ClearBrowserCache) -> Self
fn from(v: ClearBrowserCache) -> Self
Converts to this type from the input type.
Source§impl From<ClearBrowserCache> for NetworkCommands
impl From<ClearBrowserCache> for NetworkCommands
Source§fn from(v: ClearBrowserCache) -> Self
fn from(v: ClearBrowserCache) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearBrowserCache
impl PartialEq for ClearBrowserCache
Source§impl Serialize for ClearBrowserCache
impl Serialize for ClearBrowserCache
Source§impl TryFrom<BrowserProtocolCommands> for ClearBrowserCache
impl TryFrom<BrowserProtocolCommands> for ClearBrowserCache
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, <ClearBrowserCache as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearBrowserCache as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearBrowserCache
impl TryFrom<Command> for ClearBrowserCache
Source§impl TryFrom<NetworkCommands> for ClearBrowserCache
impl TryFrom<NetworkCommands> for ClearBrowserCache
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <ClearBrowserCache as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <ClearBrowserCache as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearBrowserCache
Auto Trait Implementations§
impl Freeze for ClearBrowserCache
impl RefUnwindSafe for ClearBrowserCache
impl Send for ClearBrowserCache
impl Sync for ClearBrowserCache
impl Unpin for ClearBrowserCache
impl UnsafeUnpin for ClearBrowserCache
impl UnwindSafe for ClearBrowserCache
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