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
sourceimpl Clone for SearchCustomerCreationSourceFilter
impl Clone for SearchCustomerCreationSourceFilter
sourcefn clone(&self) -> SearchCustomerCreationSourceFilter
fn clone(&self) -> SearchCustomerCreationSourceFilter
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 Default for SearchCustomerCreationSourceFilter
impl Default for SearchCustomerCreationSourceFilter
sourcefn default() -> SearchCustomerCreationSourceFilter
fn default() -> SearchCustomerCreationSourceFilter
Returns the “default value” for a type. Read more
sourceimpl PartialEq<SearchCustomerCreationSourceFilter> for SearchCustomerCreationSourceFilter
impl PartialEq<SearchCustomerCreationSourceFilter> for SearchCustomerCreationSourceFilter
sourcefn eq(&self, other: &SearchCustomerCreationSourceFilter) -> bool
fn eq(&self, other: &SearchCustomerCreationSourceFilter) -> bool
impl Eq for SearchCustomerCreationSourceFilter
impl StructuralEq for SearchCustomerCreationSourceFilter
impl StructuralPartialEq for SearchCustomerCreationSourceFilter
Auto Trait Implementations
impl RefUnwindSafe for SearchCustomerCreationSourceFilter
impl Send for SearchCustomerCreationSourceFilter
impl Sync for SearchCustomerCreationSourceFilter
impl Unpin for SearchCustomerCreationSourceFilter
impl UnwindSafe for SearchCustomerCreationSourceFilter
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.