pub struct TaskListQuery {
pub status: Option<String>,
pub phase: Option<String>,
pub tags: Option<String>,
pub parent: Option<String>,
pub owner: Option<String>,
pub sort_by: String,
pub sort_order: String,
pub page: i32,
pub limit: i32,
pub timed_filter: Option<bool>,
pub timed_states: Vec<String>,
}Expand description
Query parameters for task list.
Fields§
§status: Option<String>§phase: Option<String>§parent: Option<String>§owner: Option<String>§sort_by: String§sort_order: String§page: i32§limit: i32§timed_filter: Option<bool>Whether to filter to timed states only.
timed_states: Vec<String>List of timed state names to filter on when timed_filter is Some(true).
Trait Implementations§
Source§impl Clone for TaskListQuery
impl Clone for TaskListQuery
Source§fn clone(&self) -> TaskListQuery
fn clone(&self) -> TaskListQuery
Returns a duplicate 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 TaskListQuery
impl Debug for TaskListQuery
Source§impl Default for TaskListQuery
impl Default for TaskListQuery
Source§fn default() -> TaskListQuery
fn default() -> TaskListQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TaskListQuery
impl RefUnwindSafe for TaskListQuery
impl Send for TaskListQuery
impl Sync for TaskListQuery
impl Unpin for TaskListQuery
impl UnwindSafe for TaskListQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more