pub struct SharedStoragePrivateAggregationConfig {
pub aggregationCoordinatorOrigin: Option<String>,
pub contextId: Option<String>,
pub filteringIdMaxBytes: u64,
pub maxContributions: Option<i64>,
}Expand description
Represents a dictionary object passed in as privateAggregationConfig to run or selectURL.
Fields§
§aggregationCoordinatorOrigin: Option<String>The chosen aggregation service deployment.
contextId: Option<String>The context ID provided.
filteringIdMaxBytes: u64Configures the maximum size allowed for filtering IDs.
maxContributions: Option<i64>The limit on the number of contributions in the final report.
Trait Implementations§
Source§fn clone(&self) -> SharedStoragePrivateAggregationConfig
fn clone(&self) -> SharedStoragePrivateAggregationConfig
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§fn default() -> SharedStoragePrivateAggregationConfig
fn default() -> SharedStoragePrivateAggregationConfig
Returns the “default value” for a type. Read more
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
Auto Trait Implementations§
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