pub enum ClickStackAlertResponseInterval {
_1m,
_5m,
_15m,
_30m,
_1h,
_6h,
_12h,
_1d,
Unknown(String),
}Expand description
Inline enum for ClickStackAlertResponse.interval.
Variants§
Trait Implementations§
Source§impl Clone for ClickStackAlertResponseInterval
impl Clone for ClickStackAlertResponseInterval
Source§fn clone(&self) -> ClickStackAlertResponseInterval
fn clone(&self) -> ClickStackAlertResponseInterval
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 Default for ClickStackAlertResponseInterval
impl Default for ClickStackAlertResponseInterval
Source§fn default() -> ClickStackAlertResponseInterval
fn default() -> ClickStackAlertResponseInterval
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackAlertResponseInterval
impl<'de> Deserialize<'de> for ClickStackAlertResponseInterval
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 ClickStackAlertResponseInterval
impl PartialEq for ClickStackAlertResponseInterval
Source§fn eq(&self, other: &ClickStackAlertResponseInterval) -> bool
fn eq(&self, other: &ClickStackAlertResponseInterval) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickStackAlertResponseInterval
Auto Trait Implementations§
impl Freeze for ClickStackAlertResponseInterval
impl RefUnwindSafe for ClickStackAlertResponseInterval
impl Send for ClickStackAlertResponseInterval
impl Sync for ClickStackAlertResponseInterval
impl Unpin for ClickStackAlertResponseInterval
impl UnsafeUnpin for ClickStackAlertResponseInterval
impl UnwindSafe for ClickStackAlertResponseInterval
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