Struct chromiumoxide_cdp::cdp::browser_protocol::network::GetCookiesParams
source · [−]Expand description
Returns all browser cookies for the current URL. Depending on the backend support, will return
detailed cookie information in the cookies field.
getCookies
Fields
urls: Option<Vec<String>>The list of URLs for which applicable cookies will be fetched. If not specified, it’s assumed to be set to the list containing the URLs of the page and all of its subframes.
Implementations
sourceimpl GetCookiesParams
impl GetCookiesParams
pub fn builder() -> GetCookiesParamsBuilder
sourceimpl GetCookiesParams
impl GetCookiesParams
pub const IDENTIFIER: &'static str = "Network.getCookies"
Trait Implementations
sourceimpl Clone for GetCookiesParams
impl Clone for GetCookiesParams
sourcefn clone(&self) -> GetCookiesParams
fn clone(&self) -> GetCookiesParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Command for GetCookiesParams
impl Command for GetCookiesParams
type Response = GetCookiesReturns
type Response = GetCookiesReturns
The type of the response this request triggers on the chromium server
sourceimpl Debug for GetCookiesParams
impl Debug for GetCookiesParams
sourceimpl Default for GetCookiesParams
impl Default for GetCookiesParams
sourcefn default() -> GetCookiesParams
fn default() -> GetCookiesParams
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetCookiesParams
impl<'de> Deserialize<'de> for GetCookiesParams
sourcefn 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
sourceimpl Method for GetCookiesParams
impl Method for GetCookiesParams
sourcefn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodesourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesourceimpl MethodType for GetCookiesParams
impl MethodType for GetCookiesParams
sourceimpl PartialEq<GetCookiesParams> for GetCookiesParams
impl PartialEq<GetCookiesParams> for GetCookiesParams
sourcefn eq(&self, other: &GetCookiesParams) -> bool
fn eq(&self, other: &GetCookiesParams) -> bool
sourceimpl Serialize for GetCookiesParams
impl Serialize for GetCookiesParams
impl StructuralPartialEq for GetCookiesParams
Auto Trait Implementations
impl RefUnwindSafe for GetCookiesParams
impl Send for GetCookiesParams
impl Sync for GetCookiesParams
impl Unpin for GetCookiesParams
impl UnwindSafe for GetCookiesParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more