pub struct InterestGroupAccessed {
pub method: InterestGroupAccessedMethod,
pub params: InterestGroupAccessedParams,
}Expand description
One of the interest groups was accessed. Note that these events are global to all targets sharing an interest group store. interestGroupAccessed
Fields§
§method: InterestGroupAccessedMethod§params: InterestGroupAccessedParamsImplementations§
Source§impl InterestGroupAccessed
impl InterestGroupAccessed
pub const IDENTIFIER: &'static str = "Storage.interestGroupAccessed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InterestGroupAccessed
impl Clone for InterestGroupAccessed
Source§fn clone(&self) -> InterestGroupAccessed
fn clone(&self) -> InterestGroupAccessed
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 InterestGroupAccessed
impl Debug for InterestGroupAccessed
Source§impl<'de> Deserialize<'de> for InterestGroupAccessed
impl<'de> Deserialize<'de> for InterestGroupAccessed
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 From<InterestGroupAccessed> for BrowserProtocolEvents
impl From<InterestGroupAccessed> for BrowserProtocolEvents
Source§fn from(v: InterestGroupAccessed) -> Self
fn from(v: InterestGroupAccessed) -> Self
Converts to this type from the input type.
Source§impl From<InterestGroupAccessed> for Event
impl From<InterestGroupAccessed> for Event
Source§fn from(v: InterestGroupAccessed) -> Self
fn from(v: InterestGroupAccessed) -> Self
Converts to this type from the input type.
Source§impl From<InterestGroupAccessed> for StorageEvents
impl From<InterestGroupAccessed> for StorageEvents
Source§fn from(v: InterestGroupAccessed) -> Self
fn from(v: InterestGroupAccessed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterestGroupAccessed
impl PartialEq for InterestGroupAccessed
Source§impl Serialize for InterestGroupAccessed
impl Serialize for InterestGroupAccessed
Source§impl TryFrom<BrowserProtocolEvents> for InterestGroupAccessed
impl TryFrom<BrowserProtocolEvents> for InterestGroupAccessed
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <InterestGroupAccessed as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InterestGroupAccessed as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InterestGroupAccessed
impl TryFrom<Event> for InterestGroupAccessed
Source§impl TryFrom<StorageEvents> for InterestGroupAccessed
impl TryFrom<StorageEvents> for InterestGroupAccessed
Source§type Error = StorageEvents
type Error = StorageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: StorageEvents,
) -> Result<Self, <InterestGroupAccessed as TryFrom<StorageEvents>>::Error>
fn try_from( e: StorageEvents, ) -> Result<Self, <InterestGroupAccessed as TryFrom<StorageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InterestGroupAccessed
Auto Trait Implementations§
impl Freeze for InterestGroupAccessed
impl RefUnwindSafe for InterestGroupAccessed
impl Send for InterestGroupAccessed
impl Sync for InterestGroupAccessed
impl Unpin for InterestGroupAccessed
impl UnsafeUnpin for InterestGroupAccessed
impl UnwindSafe for InterestGroupAccessed
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