pub enum CustomerAccountType {
Customer,
Partner,
}Expand description
Defines the type of customer account.
Variants§
Trait Implementations§
Source§impl Clone for CustomerAccountType
impl Clone for CustomerAccountType
Source§fn clone(&self) -> CustomerAccountType
fn clone(&self) -> CustomerAccountType
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 CustomerAccountType
impl Debug for CustomerAccountType
Source§impl<'de> Deserialize<'de> for CustomerAccountType
impl<'de> Deserialize<'de> for CustomerAccountType
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 FromStr for CustomerAccountType
impl FromStr for CustomerAccountType
Source§impl Serialize for CustomerAccountType
impl Serialize for CustomerAccountType
Auto Trait Implementations§
impl Freeze for CustomerAccountType
impl RefUnwindSafe for CustomerAccountType
impl Send for CustomerAccountType
impl Sync for CustomerAccountType
impl Unpin for CustomerAccountType
impl UnwindSafe for CustomerAccountType
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