pub struct CustomerNeedCollectionFilter {Show 13 fields
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub priority: Option<Box<NumberComparator>>,
pub project: Option<Box<NullableProjectFilter>>,
pub issue: Option<Box<NullableIssueFilter>>,
pub comment: Option<Box<NullableCommentFilter>>,
pub customer: Option<Box<NullableCustomerFilter>>,
pub and: Option<Vec<Box<CustomerNeedCollectionFilter>>>,
pub or: Option<Vec<Box<CustomerNeedCollectionFilter>>>,
pub some: Option<Box<CustomerNeedFilter>>,
pub every: Option<Box<CustomerNeedFilter>>,
pub length: Option<Box<NumberComparator>>,
}Expand description
Customer needs filtering options.
Fields§
§id: Option<Box<IDComparator>>Comparator for the identifier.
created_at: Option<Box<DateComparator>>Comparator for the created at date.
updated_at: Option<Box<DateComparator>>Comparator for the updated at date.
priority: Option<Box<NumberComparator>>Comparator for the customer need priority.
project: Option<Box<NullableProjectFilter>>Filters that the need’s project must satisfy.
issue: Option<Box<NullableIssueFilter>>Filters that the need’s issue must satisfy.
comment: Option<Box<NullableCommentFilter>>Filters that the need’s comment must satisfy.
customer: Option<Box<NullableCustomerFilter>>Filters that the need’s customer must satisfy.
and: Option<Vec<Box<CustomerNeedCollectionFilter>>>Compound filters, all of which need to be matched by the customer needs.
or: Option<Vec<Box<CustomerNeedCollectionFilter>>>Compound filters, one of which need to be matched by the customer needs.
some: Option<Box<CustomerNeedFilter>>Filters that needs to be matched by some customer needs.
every: Option<Box<CustomerNeedFilter>>Filters that needs to be matched by all customer needs.
length: Option<Box<NumberComparator>>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for CustomerNeedCollectionFilter
impl Clone for CustomerNeedCollectionFilter
Source§fn clone(&self) -> CustomerNeedCollectionFilter
fn clone(&self) -> CustomerNeedCollectionFilter
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 CustomerNeedCollectionFilter
impl Debug for CustomerNeedCollectionFilter
Source§impl Default for CustomerNeedCollectionFilter
impl Default for CustomerNeedCollectionFilter
Source§fn default() -> CustomerNeedCollectionFilter
fn default() -> CustomerNeedCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomerNeedCollectionFilter
impl<'de> Deserialize<'de> for CustomerNeedCollectionFilter
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
Auto Trait Implementations§
impl Freeze for CustomerNeedCollectionFilter
impl RefUnwindSafe for CustomerNeedCollectionFilter
impl Send for CustomerNeedCollectionFilter
impl Sync for CustomerNeedCollectionFilter
impl Unpin for CustomerNeedCollectionFilter
impl UnwindSafe for CustomerNeedCollectionFilter
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