pub struct IssueFilter {
pub severity: Option<Severity>,
pub category: Option<IssueCategory>,
pub page_id: Option<String>,
pub code_prefix: Option<String>,
}Expand description
Filters for querying issues.
All fields are optional. When set, they narrow the query results.
When None, that filter dimension is not applied.
Fields§
§severity: Option<Severity>Filter by severity.
category: Option<IssueCategory>Filter by category.
page_id: Option<String>Filter by page ID.
code_prefix: Option<String>Filter by issue code prefix.
Trait Implementations§
Source§impl Clone for IssueFilter
impl Clone for IssueFilter
Source§fn clone(&self) -> IssueFilter
fn clone(&self) -> IssueFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IssueFilter
impl Debug for IssueFilter
Source§impl Default for IssueFilter
impl Default for IssueFilter
Source§fn default() -> IssueFilter
fn default() -> IssueFilter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IssueFilter
impl RefUnwindSafe for IssueFilter
impl Send for IssueFilter
impl Sync for IssueFilter
impl Unpin for IssueFilter
impl UnsafeUnpin for IssueFilter
impl UnwindSafe for IssueFilter
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more