pub struct IssueSuggestionCollectionFilter {Show 14 fields
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub type: Option<Box<StringComparator>>,
pub state: Option<Box<StringComparator>>,
pub suggested_user: Option<Box<NullableUserFilter>>,
pub suggested_project: Option<Box<NullableProjectFilter>>,
pub suggested_team: Option<Box<NullableTeamFilter>>,
pub suggested_label: Option<Box<IssueLabelFilter>>,
pub and: Option<Vec<Box<IssueSuggestionCollectionFilter>>>,
pub or: Option<Vec<Box<IssueSuggestionCollectionFilter>>>,
pub some: Option<Box<IssueSuggestionFilter>>,
pub every: Option<Box<IssueSuggestionFilter>>,
pub length: Option<Box<NumberComparator>>,
}Expand description
IssueSuggestion collection 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.
type: Option<Box<StringComparator>>Comparator for the suggestion type.
state: Option<Box<StringComparator>>Comparator for the suggestion state.
suggested_user: Option<Box<NullableUserFilter>>Filters that the suggested user must satisfy.
suggested_project: Option<Box<NullableProjectFilter>>Filters that the suggested project must satisfy.
suggested_team: Option<Box<NullableTeamFilter>>Filters that the suggested team must satisfy.
suggested_label: Option<Box<IssueLabelFilter>>Filters that the suggested label must satisfy.
and: Option<Vec<Box<IssueSuggestionCollectionFilter>>>Compound filters, all of which need to be matched by the suggestion.
or: Option<Vec<Box<IssueSuggestionCollectionFilter>>>Compound filters, one of which need to be matched by the suggestion.
some: Option<Box<IssueSuggestionFilter>>Filters that needs to be matched by some suggestions.
every: Option<Box<IssueSuggestionFilter>>Filters that needs to be matched by all suggestions.
length: Option<Box<NumberComparator>>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for IssueSuggestionCollectionFilter
impl Clone for IssueSuggestionCollectionFilter
Source§fn clone(&self) -> IssueSuggestionCollectionFilter
fn clone(&self) -> IssueSuggestionCollectionFilter
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 Default for IssueSuggestionCollectionFilter
impl Default for IssueSuggestionCollectionFilter
Source§fn default() -> IssueSuggestionCollectionFilter
fn default() -> IssueSuggestionCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueSuggestionCollectionFilter
impl<'de> Deserialize<'de> for IssueSuggestionCollectionFilter
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 IssueSuggestionCollectionFilter
impl RefUnwindSafe for IssueSuggestionCollectionFilter
impl Send for IssueSuggestionCollectionFilter
impl Sync for IssueSuggestionCollectionFilter
impl Unpin for IssueSuggestionCollectionFilter
impl UnwindSafe for IssueSuggestionCollectionFilter
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