pub struct AggregationFilter {
pub aggregation_settings: Option<Box<AggregationSettings>>,
}Expand description
AggregationFilter : Use this filter to select the aggregation time period at which to send notifications (e.g. limit to one notification every five minutes for high frequency notifications).
Fields
aggregation_settings: Option<Box<AggregationSettings>>Implementations
sourceimpl AggregationFilter
impl AggregationFilter
sourcepub fn new() -> AggregationFilter
pub fn new() -> AggregationFilter
Use this filter to select the aggregation time period at which to send notifications (e.g. limit to one notification every five minutes for high frequency notifications).
Trait Implementations
sourceimpl Clone for AggregationFilter
impl Clone for AggregationFilter
sourcefn clone(&self) -> AggregationFilter
fn clone(&self) -> AggregationFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AggregationFilter
impl Debug for AggregationFilter
sourceimpl Default for AggregationFilter
impl Default for AggregationFilter
sourcefn default() -> AggregationFilter
fn default() -> AggregationFilter
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AggregationFilter
impl<'de> Deserialize<'de> for AggregationFilter
sourcefn 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
sourceimpl PartialEq<AggregationFilter> for AggregationFilter
impl PartialEq<AggregationFilter> for AggregationFilter
sourcefn eq(&self, other: &AggregationFilter) -> bool
fn eq(&self, other: &AggregationFilter) -> bool
sourceimpl Serialize for AggregationFilter
impl Serialize for AggregationFilter
impl StructuralPartialEq for AggregationFilter
Auto Trait Implementations
impl RefUnwindSafe for AggregationFilter
impl Send for AggregationFilter
impl Sync for AggregationFilter
impl Unpin for AggregationFilter
impl UnwindSafe for AggregationFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more