pub struct ProjectLabelCollectionFilter {Show 13 fields
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub name: Option<Box<StringComparator>>,
pub is_group: Option<Box<BooleanComparator>>,
pub creator: Option<Box<NullableUserFilter>>,
pub parent: Option<Box<ProjectLabelFilter>>,
pub null: Option<bool>,
pub and: Option<Vec<Box<ProjectLabelCollectionFilter>>>,
pub or: Option<Vec<Box<ProjectLabelCollectionFilter>>>,
pub some: Option<Box<ProjectLabelCollectionFilter>>,
pub every: Option<Box<ProjectLabelFilter>>,
pub length: Option<Box<NumberComparator>>,
}Expand description
Project label 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.
name: Option<Box<StringComparator>>Comparator for the name.
is_group: Option<Box<BooleanComparator>>Comparator for whether the label is a group label.
creator: Option<Box<NullableUserFilter>>Filters that the project labels creator must satisfy.
parent: Option<Box<ProjectLabelFilter>>Filters that the project label’s parent label must satisfy.
null: Option<bool>Filter based on the existence of the relation.
and: Option<Vec<Box<ProjectLabelCollectionFilter>>>Compound filters, all of which need to be matched by the label.
or: Option<Vec<Box<ProjectLabelCollectionFilter>>>Compound filters, one of which need to be matched by the label.
some: Option<Box<ProjectLabelCollectionFilter>>Filters that needs to be matched by some project labels.
every: Option<Box<ProjectLabelFilter>>Filters that needs to be matched by all project labels.
length: Option<Box<NumberComparator>>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for ProjectLabelCollectionFilter
impl Clone for ProjectLabelCollectionFilter
Source§fn clone(&self) -> ProjectLabelCollectionFilter
fn clone(&self) -> ProjectLabelCollectionFilter
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 ProjectLabelCollectionFilter
impl Debug for ProjectLabelCollectionFilter
Source§impl Default for ProjectLabelCollectionFilter
impl Default for ProjectLabelCollectionFilter
Source§fn default() -> ProjectLabelCollectionFilter
fn default() -> ProjectLabelCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectLabelCollectionFilter
impl<'de> Deserialize<'de> for ProjectLabelCollectionFilter
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 ProjectLabelCollectionFilter
impl RefUnwindSafe for ProjectLabelCollectionFilter
impl Send for ProjectLabelCollectionFilter
impl Sync for ProjectLabelCollectionFilter
impl Unpin for ProjectLabelCollectionFilter
impl UnwindSafe for ProjectLabelCollectionFilter
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