pub struct IssueLabelFilter {
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 and: Option<Vec<Box<IssueLabelFilter>>>,
pub or: Option<Vec<Box<IssueLabelFilter>>>,
}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.
and: Option<Vec<Box<IssueLabelFilter>>>Compound filters, all of which need to be matched by the label.
or: Option<Vec<Box<IssueLabelFilter>>>Compound filters, one of which need to be matched by the label.
Trait Implementations§
Source§impl Clone for IssueLabelFilter
impl Clone for IssueLabelFilter
Source§fn clone(&self) -> IssueLabelFilter
fn clone(&self) -> IssueLabelFilter
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 IssueLabelFilter
impl Debug for IssueLabelFilter
Source§impl Default for IssueLabelFilter
impl Default for IssueLabelFilter
Source§fn default() -> IssueLabelFilter
fn default() -> IssueLabelFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueLabelFilter
impl<'de> Deserialize<'de> for IssueLabelFilter
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 IssueLabelFilter
impl RefUnwindSafe for IssueLabelFilter
impl Send for IssueLabelFilter
impl Sync for IssueLabelFilter
impl Unpin for IssueLabelFilter
impl UnwindSafe for IssueLabelFilter
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