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