pub struct AggregationSettings {
pub aggregation_time_period: AggregationTimePeriod,
}Expand description
AggregationSettings : A container that holds all of the necessary properties to configure the aggregation of notifications.
Fields§
§aggregation_time_period: AggregationTimePeriodImplementations§
Source§impl AggregationSettings
impl AggregationSettings
Sourcepub fn new(
aggregation_time_period: AggregationTimePeriod,
) -> AggregationSettings
pub fn new( aggregation_time_period: AggregationTimePeriod, ) -> AggregationSettings
A container that holds all of the necessary properties to configure the aggregation of notifications.
Trait Implementations§
Source§impl Clone for AggregationSettings
impl Clone for AggregationSettings
Source§fn clone(&self) -> AggregationSettings
fn clone(&self) -> AggregationSettings
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 AggregationSettings
impl Debug for AggregationSettings
Source§impl Default for AggregationSettings
impl Default for AggregationSettings
Source§fn default() -> AggregationSettings
fn default() -> AggregationSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AggregationSettings
impl<'de> Deserialize<'de> for AggregationSettings
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 AggregationSettings
impl PartialEq for AggregationSettings
Source§impl Serialize for AggregationSettings
impl Serialize for AggregationSettings
impl StructuralPartialEq for AggregationSettings
Auto Trait Implementations§
impl Freeze for AggregationSettings
impl RefUnwindSafe for AggregationSettings
impl Send for AggregationSettings
impl Sync for AggregationSettings
impl Unpin for AggregationSettings
impl UnwindSafe for AggregationSettings
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