pub struct GetAllCookiesReturns {
pub cookies: Vec<Cookie>,
}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§
Array of cookie objects.
Trait Implementations§
Source§impl Clone for GetAllCookiesReturns
impl Clone for GetAllCookiesReturns
Source§fn clone(&self) -> GetAllCookiesReturns
fn clone(&self) -> GetAllCookiesReturns
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 GetAllCookiesReturns
impl Debug for GetAllCookiesReturns
Source§impl Default for GetAllCookiesReturns
impl Default for GetAllCookiesReturns
Source§fn default() -> GetAllCookiesReturns
fn default() -> GetAllCookiesReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAllCookiesReturns
impl<'de> Deserialize<'de> for GetAllCookiesReturns
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
Auto Trait Implementations§
impl Freeze for GetAllCookiesReturns
impl RefUnwindSafe for GetAllCookiesReturns
impl Send for GetAllCookiesReturns
impl Sync for GetAllCookiesReturns
impl Unpin for GetAllCookiesReturns
impl UnsafeUnpin for GetAllCookiesReturns
impl UnwindSafe for GetAllCookiesReturns
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