pub enum BillingAlertStatus {
Active,
Archived,
Inactive,
}
Expand description
Status of the alert. This can be active, inactive or archived.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BillingAlertStatus
impl Clone for BillingAlertStatus
Source§fn clone(&self) -> BillingAlertStatus
fn clone(&self) -> BillingAlertStatus
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 BillingAlertStatus
impl Debug for BillingAlertStatus
Source§impl Deserialize for BillingAlertStatus
impl Deserialize for BillingAlertStatus
Source§impl Display for BillingAlertStatus
impl Display for BillingAlertStatus
Source§impl FromStr for BillingAlertStatus
impl FromStr for BillingAlertStatus
Source§impl FromValueOpt for BillingAlertStatus
impl FromValueOpt for BillingAlertStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for BillingAlertStatus
impl PartialEq for BillingAlertStatus
impl Copy for BillingAlertStatus
impl Eq for BillingAlertStatus
impl StructuralPartialEq for BillingAlertStatus
Auto Trait Implementations§
impl Freeze for BillingAlertStatus
impl RefUnwindSafe for BillingAlertStatus
impl Send for BillingAlertStatus
impl Sync for BillingAlertStatus
impl Unpin for BillingAlertStatus
impl UnwindSafe for BillingAlertStatus
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