Skip to main content

TaskQuery

Struct TaskQuery 

Source
pub struct TaskQuery { /* private fields */ }
Expand description

Query parameters for listing tasks with filtering and pagination.

 TaskQuery::new()
     .with_slot("build")      // filter by slot
     .with_active()           // Pending | Running
     .with_limit(50)
     .with_offset(0)
               │
               ▼  state.query(&q)
 TaskPage { items: [Task, ...], total: 123 }

An empty status filter matches all phases (no filtering). Multiple with_status calls accumulate with OR semantics.

§Also

  • TaskPage paginated result returned by state queries.
  • TaskPhase phase values used as status filters.

Implementations§

Source§

impl TaskQuery

Source

pub fn new() -> Self

Create a new query with default pagination (limit=100, offset=0) and without filters.

Source

pub fn with_slot(self, slot: impl Into<Slot>) -> Self

Filter by slot name.

Source

pub fn with_status(self, status: TaskPhase) -> Self

Add a phase filter. Multiple calls accumulate (OR semantics).

Source

pub fn with_active(self) -> Self

Filter by all active phases (Pending, Running).

Source

pub fn with_terminal(self) -> Self

Filter by all terminal phases.

Source

pub fn with_limit(self, limit: usize) -> Self

Set page size. Capped at 1000.

Source

pub fn with_offset(self, offset: usize) -> Self

Set the starting offset for pagination.

Source

pub fn matches_phase(&self, phase: &TaskPhase) -> bool

Returns true if the given phase passes the status filter.

An empty filter matches all phases.

Source

pub fn limit(&self) -> usize

Page size limit.

Source

pub fn offset(&self) -> usize

Starting offset for pagination.

Source

pub fn slot(&self) -> Option<&Slot>

Slot filter (if any).

Source

pub fn status_filters(&self) -> &[TaskPhase]

Status filters.

Trait Implementations§

Source§

impl Clone for TaskQuery

Source§

fn clone(&self) -> TaskQuery

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TaskQuery

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for TaskQuery

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.