Enum redmine_api::api::issues::StatusFilter
source · [−]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
sourceimpl Clone for StatusFilter
impl Clone for StatusFilter
sourcefn clone(&self) -> StatusFilter
fn clone(&self) -> StatusFilter
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StatusFilter
impl Debug for StatusFilter
Auto Trait Implementations
impl RefUnwindSafe for StatusFilter
impl Send for StatusFilter
impl Sync for StatusFilter
impl Unpin for StatusFilter
impl UnwindSafe for StatusFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more