#[non_exhaustive]pub enum IssueListState {
Open,
Closed,
All,
}Expand description
Which issues GitHubApi::issue_list_with returns.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for IssueListState
impl Clone for IssueListState
Source§fn clone(&self) -> IssueListState
fn clone(&self) -> IssueListState
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 moreimpl Copy for IssueListState
Source§impl Debug for IssueListState
impl Debug for IssueListState
Source§impl Default for IssueListState
impl Default for IssueListState
Source§fn default() -> IssueListState
fn default() -> IssueListState
Returns the “default value” for a type. Read more
impl Eq for IssueListState
Source§impl PartialEq for IssueListState
impl PartialEq for IssueListState
impl StructuralPartialEq for IssueListState
Auto Trait Implementations§
impl Freeze for IssueListState
impl RefUnwindSafe for IssueListState
impl Send for IssueListState
impl Sync for IssueListState
impl Unpin for IssueListState
impl UnsafeUnpin for IssueListState
impl UnwindSafe for IssueListState
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