pub enum SellingPlan {
Professional,
Individual,
}Expand description
The selling plan details.
Variants§
Trait Implementations§
Source§impl Clone for SellingPlan
impl Clone for SellingPlan
Source§fn clone(&self) -> SellingPlan
fn clone(&self) -> SellingPlan
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 SellingPlan
impl Debug for SellingPlan
Source§impl Default for SellingPlan
impl Default for SellingPlan
Source§fn default() -> SellingPlan
fn default() -> SellingPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SellingPlan
impl<'de> Deserialize<'de> for SellingPlan
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 Hash for SellingPlan
impl Hash for SellingPlan
Source§impl Ord for SellingPlan
impl Ord for SellingPlan
Source§fn cmp(&self, other: &SellingPlan) -> Ordering
fn cmp(&self, other: &SellingPlan) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SellingPlan
impl PartialEq for SellingPlan
Source§impl PartialOrd for SellingPlan
impl PartialOrd for SellingPlan
Source§impl Serialize for SellingPlan
impl Serialize for SellingPlan
impl Copy for SellingPlan
impl Eq for SellingPlan
impl StructuralPartialEq for SellingPlan
Auto Trait Implementations§
impl Freeze for SellingPlan
impl RefUnwindSafe for SellingPlan
impl Send for SellingPlan
impl Sync for SellingPlan
impl Unpin for SellingPlan
impl UnsafeUnpin for SellingPlan
impl UnwindSafe for SellingPlan
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