pub struct AlertRuleHaving {
pub column_name: String,
pub operator: String,
pub value: f64,
}Expand description
Filters on an aggregated column.
Fields§
§column_name: StringThe aggregated column.
operator: StringOne of =, !=, >, >=, <, <=.
value: f64The value to compare against.
Trait Implementations§
Source§impl Clone for AlertRuleHaving
impl Clone for AlertRuleHaving
Source§fn clone(&self) -> AlertRuleHaving
fn clone(&self) -> AlertRuleHaving
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlertRuleHaving
impl Debug for AlertRuleHaving
Source§impl<'de> Deserialize<'de> for AlertRuleHaving
impl<'de> Deserialize<'de> for AlertRuleHaving
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§
impl Freeze for AlertRuleHaving
impl RefUnwindSafe for AlertRuleHaving
impl Send for AlertRuleHaving
impl Sync for AlertRuleHaving
impl Unpin for AlertRuleHaving
impl UnsafeUnpin for AlertRuleHaving
impl UnwindSafe for AlertRuleHaving
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