pub enum ShipIndicator {
ShipToCardholdersBillingAddress,
ShipToAnotherVerifiedAddress,
ShipToDifferentAddress,
ShipToStore,
DigitalGoods,
NotShipped,
Other,
}Variants§
ShipToCardholdersBillingAddress
ShipToAnotherVerifiedAddress
ShipToDifferentAddress
ShipToStore
DigitalGoods
NotShipped
Other
Trait Implementations§
Source§impl Clone for ShipIndicator
impl Clone for ShipIndicator
Source§fn clone(&self) -> ShipIndicator
fn clone(&self) -> ShipIndicator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ShipIndicator
impl Debug for ShipIndicator
Source§impl<'de> Deserialize<'de> for ShipIndicator
impl<'de> Deserialize<'de> for ShipIndicator
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 ShipIndicator
impl Hash for ShipIndicator
Source§impl PartialEq for ShipIndicator
impl PartialEq for ShipIndicator
Source§fn eq(&self, other: &ShipIndicator) -> bool
fn eq(&self, other: &ShipIndicator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ShipIndicator
impl Serialize for ShipIndicator
impl Copy for ShipIndicator
impl Eq for ShipIndicator
impl StructuralPartialEq for ShipIndicator
Auto Trait Implementations§
impl Freeze for ShipIndicator
impl RefUnwindSafe for ShipIndicator
impl Send for ShipIndicator
impl Sync for ShipIndicator
impl Unpin for ShipIndicator
impl UnsafeUnpin for ShipIndicator
impl UnwindSafe for ShipIndicator
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