pub struct IssueLabelCollectionFilter {Show 14 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 team: Option<Box<NullableTeamFilter>>,
pub parent: Option<Box<IssueLabelFilter>>,
pub null: Option<bool>,
pub and: Option<Vec<Box<IssueLabelCollectionFilter>>>,
pub or: Option<Vec<Box<IssueLabelCollectionFilter>>>,
pub some: Option<Box<IssueLabelFilter>>,
pub every: Option<Box<IssueLabelFilter>>,
pub length: Option<Box<NumberComparator>>,
}Expand description
Issue 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 issue labels creator must satisfy.
team: Option<Box<NullableTeamFilter>>Filters that the issue labels team must satisfy.
parent: Option<Box<IssueLabelFilter>>Filters that the issue label’s parent label must satisfy.
null: Option<bool>Filter based on the existence of the relation.
and: Option<Vec<Box<IssueLabelCollectionFilter>>>Compound filters, all of which need to be matched by the label.
or: Option<Vec<Box<IssueLabelCollectionFilter>>>Compound filters, one of which need to be matched by the label.
some: Option<Box<IssueLabelFilter>>Filters that needs to be matched by some issue labels.
every: Option<Box<IssueLabelFilter>>Filters that needs to be matched by all issue labels.
length: Option<Box<NumberComparator>>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for IssueLabelCollectionFilter
impl Clone for IssueLabelCollectionFilter
Source§fn clone(&self) -> IssueLabelCollectionFilter
fn clone(&self) -> IssueLabelCollectionFilter
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 IssueLabelCollectionFilter
impl Debug for IssueLabelCollectionFilter
Source§impl Default for IssueLabelCollectionFilter
impl Default for IssueLabelCollectionFilter
Source§fn default() -> IssueLabelCollectionFilter
fn default() -> IssueLabelCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueLabelCollectionFilter
impl<'de> Deserialize<'de> for IssueLabelCollectionFilter
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 IssueLabelCollectionFilter
impl RefUnwindSafe for IssueLabelCollectionFilter
impl Send for IssueLabelCollectionFilter
impl Sync for IssueLabelCollectionFilter
impl Unpin for IssueLabelCollectionFilter
impl UnwindSafe for IssueLabelCollectionFilter
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