pub enum PriceClass {
PriceClass100,
PriceClass200,
PriceClassAll,
None,
}Variants§
Trait Implementations§
Source§impl Clone for PriceClass
impl Clone for PriceClass
Source§fn clone(&self) -> PriceClass
fn clone(&self) -> PriceClass
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 PriceClass
impl Debug for PriceClass
Source§impl From<PriceClass> for String
impl From<PriceClass> for String
Source§fn from(value: PriceClass) -> Self
fn from(value: PriceClass) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PriceClass
impl RefUnwindSafe for PriceClass
impl Send for PriceClass
impl Sync for PriceClass
impl Unpin for PriceClass
impl UnwindSafe for PriceClass
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