pub struct EventInterestGroupAccessed {
pub access_time: TimeSinceEpoch,
pub type: InterestGroupAccessType,
pub owner_origin: String,
pub name: String,
}Expand description
One of the interest groups was accessed by the associated page. interestGroupAccessed
Fields§
§access_time: TimeSinceEpoch§type: InterestGroupAccessType§owner_origin: String§name: StringImplementations§
source§impl EventInterestGroupAccessed
impl EventInterestGroupAccessed
pub const IDENTIFIER: &'static str = "Storage.interestGroupAccessed"
Trait Implementations§
source§impl Clone for EventInterestGroupAccessed
impl Clone for EventInterestGroupAccessed
source§fn clone(&self) -> EventInterestGroupAccessed
fn clone(&self) -> EventInterestGroupAccessed
Returns a copy 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 EventInterestGroupAccessed
impl Debug for EventInterestGroupAccessed
source§impl<'de> Deserialize<'de> for EventInterestGroupAccessed
impl<'de> Deserialize<'de> for EventInterestGroupAccessed
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<EventInterestGroupAccessed, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<EventInterestGroupAccessed, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EventInterestGroupAccessed> for CdpEvent
impl From<EventInterestGroupAccessed> for CdpEvent
source§fn from(el: EventInterestGroupAccessed) -> CdpEvent
fn from(el: EventInterestGroupAccessed) -> CdpEvent
Converts to this type from the input type.
source§impl IntoEventKind for EventInterestGroupAccessed
impl IntoEventKind for EventInterestGroupAccessed
source§fn event_kind() -> EventKindwhere
EventInterestGroupAccessed: Sized + 'static,
fn event_kind() -> EventKindwhere EventInterestGroupAccessed: Sized + 'static,
What kind of event this type is
source§impl Method for EventInterestGroupAccessed
impl Method for EventInterestGroupAccessed
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl PartialEq<EventInterestGroupAccessed> for EventInterestGroupAccessed
impl PartialEq<EventInterestGroupAccessed> for EventInterestGroupAccessed
source§fn eq(&self, other: &EventInterestGroupAccessed) -> bool
fn eq(&self, other: &EventInterestGroupAccessed) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for EventInterestGroupAccessed
impl Serialize for EventInterestGroupAccessed
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more