pub struct TaskQueryParams {
pub context_id: Option<String>,
pub state: Option<TaskState>,
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
Parameters for querying/listing tasks.
Fields§
§context_id: Option<String>Filter by context ID.
state: Option<TaskState>Filter by task state.
limit: Option<u32>Maximum number of tasks to return.
cursor: Option<String>Cursor for pagination.
Trait Implementations§
Source§impl Clone for TaskQueryParams
impl Clone for TaskQueryParams
Source§fn clone(&self) -> TaskQueryParams
fn clone(&self) -> TaskQueryParams
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 TaskQueryParams
impl Debug for TaskQueryParams
Source§impl Default for TaskQueryParams
impl Default for TaskQueryParams
Source§fn default() -> TaskQueryParams
fn default() -> TaskQueryParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskQueryParams
impl<'de> Deserialize<'de> for TaskQueryParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TaskQueryParams
impl RefUnwindSafe for TaskQueryParams
impl Send for TaskQueryParams
impl Sync for TaskQueryParams
impl Unpin for TaskQueryParams
impl UnsafeUnpin for TaskQueryParams
impl UnwindSafe for TaskQueryParams
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