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
sourceimpl Clone for SearchOrdersFulfillmentFilter
impl Clone for SearchOrdersFulfillmentFilter
sourcefn clone(&self) -> SearchOrdersFulfillmentFilter
fn clone(&self) -> SearchOrdersFulfillmentFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchOrdersFulfillmentFilter
impl Debug for SearchOrdersFulfillmentFilter
sourceimpl Default for SearchOrdersFulfillmentFilter
impl Default for SearchOrdersFulfillmentFilter
sourcefn default() -> SearchOrdersFulfillmentFilter
fn default() -> SearchOrdersFulfillmentFilter
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchOrdersFulfillmentFilter> for SearchOrdersFulfillmentFilter
impl PartialEq<SearchOrdersFulfillmentFilter> for SearchOrdersFulfillmentFilter
sourcefn eq(&self, other: &SearchOrdersFulfillmentFilter) -> bool
fn eq(&self, other: &SearchOrdersFulfillmentFilter) -> bool
impl Eq for SearchOrdersFulfillmentFilter
impl StructuralEq for SearchOrdersFulfillmentFilter
impl StructuralPartialEq for SearchOrdersFulfillmentFilter
Auto Trait Implementations
impl RefUnwindSafe for SearchOrdersFulfillmentFilter
impl Send for SearchOrdersFulfillmentFilter
impl Sync for SearchOrdersFulfillmentFilter
impl Unpin for SearchOrdersFulfillmentFilter
impl UnwindSafe for SearchOrdersFulfillmentFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.