pub struct FulfillmentInstruction {
pub fulfillment_supply_source_id: Option<String>,
}Expand description
FulfillmentInstruction : Contains the instructions about the fulfillment, such as the location from where you want the order filled.
Fields§
§fulfillment_supply_source_id: Option<String>The sourceId of the location from where you want the order fulfilled.
Implementations§
Source§impl FulfillmentInstruction
impl FulfillmentInstruction
Sourcepub fn new() -> FulfillmentInstruction
pub fn new() -> FulfillmentInstruction
Contains the instructions about the fulfillment, such as the location from where you want the order filled.
Trait Implementations§
Source§impl Clone for FulfillmentInstruction
impl Clone for FulfillmentInstruction
Source§fn clone(&self) -> FulfillmentInstruction
fn clone(&self) -> FulfillmentInstruction
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 FulfillmentInstruction
impl Debug for FulfillmentInstruction
Source§impl Default for FulfillmentInstruction
impl Default for FulfillmentInstruction
Source§fn default() -> FulfillmentInstruction
fn default() -> FulfillmentInstruction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FulfillmentInstruction
impl<'de> Deserialize<'de> for FulfillmentInstruction
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 FulfillmentInstruction
impl PartialEq for FulfillmentInstruction
Source§impl Serialize for FulfillmentInstruction
impl Serialize for FulfillmentInstruction
impl StructuralPartialEq for FulfillmentInstruction
Auto Trait Implementations§
impl Freeze for FulfillmentInstruction
impl RefUnwindSafe for FulfillmentInstruction
impl Send for FulfillmentInstruction
impl Sync for FulfillmentInstruction
impl Unpin for FulfillmentInstruction
impl UnwindSafe for FulfillmentInstruction
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