pub struct DeleteCookiesCommandBuilder { /* private fields */ }Available on crate features
Network and Debugger and Runtime and Security only.Implementations§
Source§impl DeleteCookiesCommandBuilder
impl DeleteCookiesCommandBuilder
Sourcepub fn url(&mut self, v: String) -> &mut Self
pub fn url(&mut self, v: String) -> &mut Self
If specified, deletes all the cookies with the given name where domain and path match provided URL.
Sourcepub fn domain(&mut self, v: String) -> &mut Self
pub fn domain(&mut self, v: String) -> &mut Self
If specified, deletes only cookies with the exact domain.
Sourcepub fn path(&mut self, v: String) -> &mut Self
pub fn path(&mut self, v: String) -> &mut Self
If specified, deletes only cookies with the exact path.
pub fn build(&mut self) -> Result<DeleteCookiesCommand, &'static str>
Trait Implementations§
Source§impl Clone for DeleteCookiesCommandBuilder
impl Clone for DeleteCookiesCommandBuilder
Source§fn clone(&self) -> DeleteCookiesCommandBuilder
fn clone(&self) -> DeleteCookiesCommandBuilder
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 DeleteCookiesCommandBuilder
impl Debug for DeleteCookiesCommandBuilder
Auto Trait Implementations§
impl Freeze for DeleteCookiesCommandBuilder
impl RefUnwindSafe for DeleteCookiesCommandBuilder
impl Send for DeleteCookiesCommandBuilder
impl Sync for DeleteCookiesCommandBuilder
impl Unpin for DeleteCookiesCommandBuilder
impl UnwindSafe for DeleteCookiesCommandBuilder
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