pub enum CustomerStatusType {
Active,
Inactive,
Unknown,
}Expand description
DEPRECATED A type of customer status.
Variants§
Trait Implementations§
Source§impl Clone for CustomerStatusType
impl Clone for CustomerStatusType
Source§fn clone(&self) -> CustomerStatusType
fn clone(&self) -> CustomerStatusType
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 CustomerStatusType
impl Debug for CustomerStatusType
Source§impl<'de> Deserialize<'de> for CustomerStatusType
impl<'de> Deserialize<'de> for CustomerStatusType
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 CustomerStatusType
impl PartialEq for CustomerStatusType
Source§impl Serialize for CustomerStatusType
impl Serialize for CustomerStatusType
impl Eq for CustomerStatusType
impl StructuralPartialEq for CustomerStatusType
Auto Trait Implementations§
impl Freeze for CustomerStatusType
impl RefUnwindSafe for CustomerStatusType
impl Send for CustomerStatusType
impl Sync for CustomerStatusType
impl Unpin for CustomerStatusType
impl UnwindSafe for CustomerStatusType
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