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