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