pub struct InterestGroupAuctionNetworkRequestCreatedParams {
pub type: InterestGroupAuctionFetchType,
pub request_id: RequestId,
pub auctions: Vec<InterestGroupAuctionId>,
}Expand description
Specifies which auctions a particular network fetch may be related to, and in what role. Note that it is not ordered with respect to Network.requestWillBeSent (but will happen before loadingFinished loadingFailed). interestGroupAuctionNetworkRequestCreated
Fields§
§type: InterestGroupAuctionFetchType§request_id: RequestId§auctions: Vec<InterestGroupAuctionId>This is the set of the auctions using the worklet that issued this request. In the case of trusted signals, it’s possible that only some of them actually care about the keys being queried.
Trait Implementations§
Source§impl Clone for InterestGroupAuctionNetworkRequestCreatedParams
impl Clone for InterestGroupAuctionNetworkRequestCreatedParams
Source§fn clone(&self) -> InterestGroupAuctionNetworkRequestCreatedParams
fn clone(&self) -> InterestGroupAuctionNetworkRequestCreatedParams
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 InterestGroupAuctionNetworkRequestCreatedParams
impl<'de> Deserialize<'de> for InterestGroupAuctionNetworkRequestCreatedParams
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 PartialEq for InterestGroupAuctionNetworkRequestCreatedParams
impl PartialEq for InterestGroupAuctionNetworkRequestCreatedParams
Source§fn eq(&self, other: &InterestGroupAuctionNetworkRequestCreatedParams) -> bool
fn eq(&self, other: &InterestGroupAuctionNetworkRequestCreatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InterestGroupAuctionNetworkRequestCreatedParams
Auto Trait Implementations§
impl Freeze for InterestGroupAuctionNetworkRequestCreatedParams
impl RefUnwindSafe for InterestGroupAuctionNetworkRequestCreatedParams
impl Send for InterestGroupAuctionNetworkRequestCreatedParams
impl Sync for InterestGroupAuctionNetworkRequestCreatedParams
impl Unpin for InterestGroupAuctionNetworkRequestCreatedParams
impl UnsafeUnpin for InterestGroupAuctionNetworkRequestCreatedParams
impl UnwindSafe for InterestGroupAuctionNetworkRequestCreatedParams
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