pub struct InterestGroupAuctionEventOccurred {
pub method: InterestGroupAuctionEventOccurredMethod,
pub params: InterestGroupAuctionEventOccurredParams,
}Expand description
An auction involving interest groups is taking place. These events are target-specific. interestGroupAuctionEventOccurred
Fields§
§method: InterestGroupAuctionEventOccurredMethod§params: InterestGroupAuctionEventOccurredParamsImplementations§
Source§impl InterestGroupAuctionEventOccurred
impl InterestGroupAuctionEventOccurred
pub const IDENTIFIER: &'static str = "Storage.interestGroupAuctionEventOccurred"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InterestGroupAuctionEventOccurred
impl Clone for InterestGroupAuctionEventOccurred
Source§fn clone(&self) -> InterestGroupAuctionEventOccurred
fn clone(&self) -> InterestGroupAuctionEventOccurred
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 InterestGroupAuctionEventOccurred
impl<'de> Deserialize<'de> for InterestGroupAuctionEventOccurred
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<InterestGroupAuctionEventOccurred> for BrowserProtocolEvents
impl From<InterestGroupAuctionEventOccurred> for BrowserProtocolEvents
Source§fn from(v: InterestGroupAuctionEventOccurred) -> Self
fn from(v: InterestGroupAuctionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl From<InterestGroupAuctionEventOccurred> for Event
impl From<InterestGroupAuctionEventOccurred> for Event
Source§fn from(v: InterestGroupAuctionEventOccurred) -> Self
fn from(v: InterestGroupAuctionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl From<InterestGroupAuctionEventOccurred> for StorageEvents
impl From<InterestGroupAuctionEventOccurred> for StorageEvents
Source§fn from(v: InterestGroupAuctionEventOccurred) -> Self
fn from(v: InterestGroupAuctionEventOccurred) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterestGroupAuctionEventOccurred
impl PartialEq for InterestGroupAuctionEventOccurred
Source§fn eq(&self, other: &InterestGroupAuctionEventOccurred) -> bool
fn eq(&self, other: &InterestGroupAuctionEventOccurred) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolEvents> for InterestGroupAuctionEventOccurred
impl TryFrom<BrowserProtocolEvents> for InterestGroupAuctionEventOccurred
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, <InterestGroupAuctionEventOccurred as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InterestGroupAuctionEventOccurred as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<StorageEvents> for InterestGroupAuctionEventOccurred
impl TryFrom<StorageEvents> for InterestGroupAuctionEventOccurred
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, <InterestGroupAuctionEventOccurred as TryFrom<StorageEvents>>::Error>
fn try_from( e: StorageEvents, ) -> Result<Self, <InterestGroupAuctionEventOccurred as TryFrom<StorageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InterestGroupAuctionEventOccurred
Auto Trait Implementations§
impl Freeze for InterestGroupAuctionEventOccurred
impl RefUnwindSafe for InterestGroupAuctionEventOccurred
impl Send for InterestGroupAuctionEventOccurred
impl Sync for InterestGroupAuctionEventOccurred
impl Unpin for InterestGroupAuctionEventOccurred
impl UnsafeUnpin for InterestGroupAuctionEventOccurred
impl UnwindSafe for InterestGroupAuctionEventOccurred
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