pub struct GetAffectedUrlsForThirdPartyCookieMetadata {
pub first_party_url: String,
pub third_party_urls: Vec<String>,
}Expand description
Returns the list of URLs from a page and its embedded resources that match existing grace period URL pattern rules. https://developers.google.com/privacy-sandbox/cookies/temporary-exceptions/grace-period
Fields§
§first_party_url: StringThe URL of the page currently being visited.
third_party_urls: Vec<String>The list of embedded resource URLs from the page.
Trait Implementations§
Source§impl Clone for GetAffectedUrlsForThirdPartyCookieMetadata
impl Clone for GetAffectedUrlsForThirdPartyCookieMetadata
Source§fn clone(&self) -> GetAffectedUrlsForThirdPartyCookieMetadata
fn clone(&self) -> GetAffectedUrlsForThirdPartyCookieMetadata
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<'de> Deserialize<'de> for GetAffectedUrlsForThirdPartyCookieMetadata
impl<'de> Deserialize<'de> for GetAffectedUrlsForThirdPartyCookieMetadata
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 Method for GetAffectedUrlsForThirdPartyCookieMetadata
impl Method for GetAffectedUrlsForThirdPartyCookieMetadata
const NAME: &'static str = "Storage.getAffectedUrlsForThirdPartyCookieMetadata"
type ReturnObject = GetAffectedUrlsForThirdPartyCookieMetadataReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
Source§impl PartialEq for GetAffectedUrlsForThirdPartyCookieMetadata
impl PartialEq for GetAffectedUrlsForThirdPartyCookieMetadata
Source§fn eq(&self, other: &GetAffectedUrlsForThirdPartyCookieMetadata) -> bool
fn eq(&self, other: &GetAffectedUrlsForThirdPartyCookieMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAffectedUrlsForThirdPartyCookieMetadata
Auto Trait Implementations§
impl Freeze for GetAffectedUrlsForThirdPartyCookieMetadata
impl RefUnwindSafe for GetAffectedUrlsForThirdPartyCookieMetadata
impl Send for GetAffectedUrlsForThirdPartyCookieMetadata
impl Sync for GetAffectedUrlsForThirdPartyCookieMetadata
impl Unpin for GetAffectedUrlsForThirdPartyCookieMetadata
impl UnsafeUnpin for GetAffectedUrlsForThirdPartyCookieMetadata
impl UnwindSafe for GetAffectedUrlsForThirdPartyCookieMetadata
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