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>>,
}Fields§
§id: Option<Box<IDComparator>>§created_at: Option<Box<DateComparator>>§updated_at: Option<Box<DateComparator>>§name: Option<Box<StringComparator>>§is_group: Option<Box<BooleanComparator>>§creator: Option<Box<NullableUserFilter>>§team: Option<Box<NullableTeamFilter>>§parent: Option<Box<IssueLabelFilter>>§null: Option<bool>§and: Option<Vec<Box<IssueLabelCollectionFilter>>>§or: Option<Vec<Box<IssueLabelCollectionFilter>>>§some: Option<Box<IssueLabelFilter>>§every: Option<Box<IssueLabelFilter>>§length: Option<Box<NumberComparator>>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