pub struct InterestGroupAccessedParams {
pub access_time: TimeSinceEpoch,
pub type: InterestGroupAccessType,
pub owner_origin: String,
pub name: String,
pub component_seller_origin: Option<String>,
pub bid: Option<f64>,
pub bid_currency: Option<String>,
pub unique_auction_id: Option<InterestGroupAuctionId>,
}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§
§access_time: TimeSinceEpoch§type: InterestGroupAccessType§owner_origin: String§name: String§component_seller_origin: Option<String>For topLevelBid/topLevelAdditionalBid, and when appropriate, win and additionalBidWin
bid: Option<f64>For bid or somethingBid event, if done locally and not on a server.
bid_currency: Option<String>§unique_auction_id: Option<InterestGroupAuctionId>For non-global events — links to interestGroupAuctionEvent
Trait Implementations§
Source§impl Clone for InterestGroupAccessedParams
impl Clone for InterestGroupAccessedParams
Source§fn clone(&self) -> InterestGroupAccessedParams
fn clone(&self) -> InterestGroupAccessedParams
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 InterestGroupAccessedParams
impl Debug for InterestGroupAccessedParams
Source§impl<'de> Deserialize<'de> for InterestGroupAccessedParams
impl<'de> Deserialize<'de> for InterestGroupAccessedParams
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
impl StructuralPartialEq for InterestGroupAccessedParams
Auto Trait Implementations§
impl Freeze for InterestGroupAccessedParams
impl RefUnwindSafe for InterestGroupAccessedParams
impl Send for InterestGroupAccessedParams
impl Sync for InterestGroupAccessedParams
impl Unpin for InterestGroupAccessedParams
impl UnsafeUnpin for InterestGroupAccessedParams
impl UnwindSafe for InterestGroupAccessedParams
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