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