pub struct SearchOrdersFulfillmentFilter {
pub fulfillment_types: Option<Vec<OrderFulfillmentType>>,
pub fulfillment_states: Option<Vec<OrderFulfillmentState>>,
}
Expand description
Filter based on order fulfillment information
Fields§
§fulfillment_types: Option<Vec<OrderFulfillmentType>>
A list of fulfillment types to filter for. The list returns orders if any of its fulfillments match any of the fulfillment types listed in this field.
fulfillment_states: Option<Vec<OrderFulfillmentState>>
A list of fulfillment states to filter for. The list returns orders if any of its fulfillments match any of the fulfillment states listed in this field.
Trait Implementations§
Source§impl Clone for SearchOrdersFulfillmentFilter
impl Clone for SearchOrdersFulfillmentFilter
Source§fn clone(&self) -> SearchOrdersFulfillmentFilter
fn clone(&self) -> SearchOrdersFulfillmentFilter
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for SearchOrdersFulfillmentFilter
impl Default for SearchOrdersFulfillmentFilter
Source§fn default() -> SearchOrdersFulfillmentFilter
fn default() -> SearchOrdersFulfillmentFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchOrdersFulfillmentFilter
impl PartialEq for SearchOrdersFulfillmentFilter
Source§fn eq(&self, other: &SearchOrdersFulfillmentFilter) -> bool
fn eq(&self, other: &SearchOrdersFulfillmentFilter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SearchOrdersFulfillmentFilter
impl StructuralPartialEq for SearchOrdersFulfillmentFilter
Auto Trait Implementations§
impl Freeze for SearchOrdersFulfillmentFilter
impl RefUnwindSafe for SearchOrdersFulfillmentFilter
impl Send for SearchOrdersFulfillmentFilter
impl Sync for SearchOrdersFulfillmentFilter
impl Unpin for SearchOrdersFulfillmentFilter
impl UnwindSafe for SearchOrdersFulfillmentFilter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.