pub struct ListRunsQuery {
pub workflow: Option<String>,
pub status: Option<RunStatus>,
pub has_steps: Option<bool>,
pub label: Option<String>,
pub page: Option<u32>,
pub per_page: Option<u32>,
}Expand description
Query parameters for listing runs.
Fields§
§workflow: Option<String>Filter by workflow name.
status: Option<RunStatus>Filter by run status.
has_steps: Option<bool>Filter by step presence (only applies to completed/cancelled runs).
Non-terminal runs (pending, running, etc.) are always included.
When true, only return completed/cancelled runs that have steps.
When false, only return completed/cancelled runs without steps.
label: Option<String>Filter by labels. Comma-separated key:value pairs.
page: Option<u32>Page number (1-based).
per_page: Option<u32>Items per page.
Implementations§
Source§impl ListRunsQuery
impl ListRunsQuery
Trait Implementations§
Source§impl Debug for ListRunsQuery
impl Debug for ListRunsQuery
Source§impl<'de> Deserialize<'de> for ListRunsQuery
impl<'de> Deserialize<'de> for ListRunsQuery
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 ListRunsQuery
impl RefUnwindSafe for ListRunsQuery
impl Send for ListRunsQuery
impl Sync for ListRunsQuery
impl Unpin for ListRunsQuery
impl UnsafeUnpin for ListRunsQuery
impl UnwindSafe for ListRunsQuery
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