Enum redmine_api::api::issues::AssigneeFilter
source · [−]pub enum AssigneeFilter {
AnyAssignee,
Me,
NotMe,
TheseAssignees(Vec<u64>),
NotTheseAssignees(Vec<u64>),
NoAssignee,
}
Expand description
ways to filter for users or groups in assignee
Variants
AnyAssignee
match any user or group
Me
match the current API user
NotMe
match any assignee but the current API user
TheseAssignees(Vec<u64>)
match a specific list of users or groups
NotTheseAssignees(Vec<u64>)
match a negated specific list of users or groups
NoAssignee
match unassigned
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AssigneeFilter
impl Send for AssigneeFilter
impl Sync for AssigneeFilter
impl Unpin for AssigneeFilter
impl UnwindSafe for AssigneeFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more