pub struct DeleteCookies {
pub method: DeleteCookiesMethod,
pub params: DeleteCookiesParams,
}Expand description
Deletes browser cookies with matching name and url or domain/path/partitionKey pair. deleteCookies
Fields§
§method: DeleteCookiesMethod§params: DeleteCookiesParamsImplementations§
Source§impl DeleteCookies
impl DeleteCookies
pub fn builder() -> DeleteCookiesBuilder
Source§impl DeleteCookies
impl DeleteCookies
pub const IDENTIFIER: &'static str = "Network.deleteCookies"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DeleteCookies
impl Clone for DeleteCookies
Source§fn clone(&self) -> DeleteCookies
fn clone(&self) -> DeleteCookies
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 DeleteCookies
impl CommandResult for DeleteCookies
type Result = DeleteCookiesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for DeleteCookies
impl Debug for DeleteCookies
Source§impl<'de> Deserialize<'de> for DeleteCookies
impl<'de> Deserialize<'de> for DeleteCookies
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<DeleteCookies> for BrowserProtocolCommands
impl From<DeleteCookies> for BrowserProtocolCommands
Source§fn from(v: DeleteCookies) -> Self
fn from(v: DeleteCookies) -> Self
Converts to this type from the input type.
Source§impl From<DeleteCookies> for Command
impl From<DeleteCookies> for Command
Source§fn from(v: DeleteCookies) -> Self
fn from(v: DeleteCookies) -> Self
Converts to this type from the input type.
Source§impl From<DeleteCookies> for NetworkCommands
impl From<DeleteCookies> for NetworkCommands
Source§fn from(v: DeleteCookies) -> Self
fn from(v: DeleteCookies) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeleteCookies
impl PartialEq for DeleteCookies
Source§impl Serialize for DeleteCookies
impl Serialize for DeleteCookies
Source§impl TryFrom<BrowserProtocolCommands> for DeleteCookies
impl TryFrom<BrowserProtocolCommands> for DeleteCookies
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, <DeleteCookies as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <DeleteCookies as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for DeleteCookies
impl TryFrom<Command> for DeleteCookies
Source§impl TryFrom<NetworkCommands> for DeleteCookies
impl TryFrom<NetworkCommands> for DeleteCookies
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, <DeleteCookies as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <DeleteCookies as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for DeleteCookies
Auto Trait Implementations§
impl Freeze for DeleteCookies
impl RefUnwindSafe for DeleteCookies
impl Send for DeleteCookies
impl Sync for DeleteCookies
impl Unpin for DeleteCookies
impl UnsafeUnpin for DeleteCookies
impl UnwindSafe for DeleteCookies
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