pub enum ShippingType {
Courier,
Pickup,
}Variants§
Trait Implementations§
Source§impl Clone for ShippingType
impl Clone for ShippingType
Source§fn clone(&self) -> ShippingType
fn clone(&self) -> ShippingType
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 ShippingType
impl Debug for ShippingType
Source§impl<'de> Deserialize<'de> for ShippingType
impl<'de> Deserialize<'de> for ShippingType
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 ShippingType
impl Hash for ShippingType
Source§impl PartialEq for ShippingType
impl PartialEq for ShippingType
Source§impl Serialize for ShippingType
impl Serialize for ShippingType
impl Eq for ShippingType
impl StructuralPartialEq for ShippingType
Auto Trait Implementations§
impl Freeze for ShippingType
impl RefUnwindSafe for ShippingType
impl Send for ShippingType
impl Sync for ShippingType
impl Unpin for ShippingType
impl UnwindSafe for ShippingType
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