pub struct SearchCustomerCreationSourceFilter {
pub rule: Option<CustomerCreationSourceRule>,
pub values: Option<Vec<CustomerCreationSource>>,
}
Expand description
Filter based on order fulfillment information
Fields§
§rule: Option<CustomerCreationSourceRule>
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.
values: Option<Vec<CustomerCreationSource>>
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 SearchCustomerCreationSourceFilter
impl Clone for SearchCustomerCreationSourceFilter
Source§fn clone(&self) -> SearchCustomerCreationSourceFilter
fn clone(&self) -> SearchCustomerCreationSourceFilter
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 SearchCustomerCreationSourceFilter
impl Default for SearchCustomerCreationSourceFilter
Source§fn default() -> SearchCustomerCreationSourceFilter
fn default() -> SearchCustomerCreationSourceFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for SearchCustomerCreationSourceFilter
impl PartialEq for SearchCustomerCreationSourceFilter
Source§fn eq(&self, other: &SearchCustomerCreationSourceFilter) -> bool
fn eq(&self, other: &SearchCustomerCreationSourceFilter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for SearchCustomerCreationSourceFilter
impl StructuralPartialEq for SearchCustomerCreationSourceFilter
Auto Trait Implementations§
impl Freeze for SearchCustomerCreationSourceFilter
impl RefUnwindSafe for SearchCustomerCreationSourceFilter
impl Send for SearchCustomerCreationSourceFilter
impl Sync for SearchCustomerCreationSourceFilter
impl Unpin for SearchCustomerCreationSourceFilter
impl UnwindSafe for SearchCustomerCreationSourceFilter
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.