pub enum StatusFilter {
Open,
Closed,
All,
TheseStatuses(Vec<u64>),
NotTheseStatuses(Vec<u64>),
}
Expand description
ways to filter for issue status
Variants§
Open
match all open statuses (default if no status filter is specified
Closed
match all closed statuses
All
match both open and closed statuses
TheseStatuses(Vec<u64>)
match a specific list of statuses
NotTheseStatuses(Vec<u64>)
match any status but a specific list of statuses
Trait Implementations§
Source§impl Clone for StatusFilter
impl Clone for StatusFilter
Source§fn clone(&self) -> StatusFilter
fn clone(&self) -> StatusFilter
Returns a copy 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 StatusFilter
impl Debug for StatusFilter
Auto Trait Implementations§
impl Freeze for StatusFilter
impl RefUnwindSafe for StatusFilter
impl Send for StatusFilter
impl Sync for StatusFilter
impl Unpin for StatusFilter
impl UnwindSafe for StatusFilter
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