#[non_exhaustive]pub struct IssueList {
pub state: IssueListState,
pub limit: usize,
}Expand description
Filters for GitHubApi::issue_list_with (gh issue list).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.state: IssueListStateState filter (--state).
limit: usizeMaximum number of issues (--limit).
Implementations§
Trait Implementations§
impl Eq for IssueList
impl StructuralPartialEq for IssueList
Auto Trait Implementations§
impl Freeze for IssueList
impl RefUnwindSafe for IssueList
impl Send for IssueList
impl Sync for IssueList
impl Unpin for IssueList
impl UnsafeUnpin for IssueList
impl UnwindSafe for IssueList
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