pub struct GetAllCookiesReturnObject {
pub cookies: Vec<Cookie>,
}๐Deprecated
Expand description
Returns all browser cookies. Depending on the backend support, will return detailed cookie
information in the cookies field.
Deprecated. Use Storage.getCookies instead.
Fieldsยง
๐Deprecated
Array of cookie objects.
Trait Implementationsยง
Sourceยงimpl Clone for GetAllCookiesReturnObject
impl Clone for GetAllCookiesReturnObject
Sourceยงfn clone(&self) -> GetAllCookiesReturnObject
fn clone(&self) -> GetAllCookiesReturnObject
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 GetAllCookiesReturnObject
impl Debug for GetAllCookiesReturnObject
Sourceยงimpl<'de> Deserialize<'de> for GetAllCookiesReturnObject
impl<'de> Deserialize<'de> for GetAllCookiesReturnObject
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 PartialEq for GetAllCookiesReturnObject
impl PartialEq for GetAllCookiesReturnObject
Sourceยงfn eq(&self, other: &GetAllCookiesReturnObject) -> bool
fn eq(&self, other: &GetAllCookiesReturnObject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAllCookiesReturnObject
Auto Trait Implementationsยง
impl Freeze for GetAllCookiesReturnObject
impl RefUnwindSafe for GetAllCookiesReturnObject
impl Send for GetAllCookiesReturnObject
impl Sync for GetAllCookiesReturnObject
impl Unpin for GetAllCookiesReturnObject
impl UnsafeUnpin for GetAllCookiesReturnObject
impl UnwindSafe for GetAllCookiesReturnObject
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