pub enum SubProjectFilter {
OnlyParentProject,
TheseSubProjects(Vec<u64>),
NotTheseSubProjects(Vec<u64>),
}
Expand description
ways to filter for subproject
Variants§
OnlyParentProject
return no issues from subjects
TheseSubProjects(Vec<u64>)
return issues from a specific list of sub project ids
NotTheseSubProjects(Vec<u64>)
return issues from any but a specific list of sub project ids
Trait Implementations§
Source§impl Clone for SubProjectFilter
impl Clone for SubProjectFilter
Source§fn clone(&self) -> SubProjectFilter
fn clone(&self) -> SubProjectFilter
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 SubProjectFilter
impl Debug for SubProjectFilter
Auto Trait Implementations§
impl Freeze for SubProjectFilter
impl RefUnwindSafe for SubProjectFilter
impl Send for SubProjectFilter
impl Sync for SubProjectFilter
impl Unpin for SubProjectFilter
impl UnwindSafe for SubProjectFilter
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