pub struct ListRunsQuery {
pub status: Option<RunStatus>,
pub itinerary_id: Option<String>,
pub agent: Option<String>,
pub pipeline: Option<String>,
pub window: Option<CostWindow>,
pub limit: Option<i32>,
}Expand description
query parameters for listRuns.
Fields§
§status: Option<RunStatus>Return only runs in this state.
itinerary_id: Option<String>Return only runs belonging to this itinerary.
agent: Option<String>Return only runs of this agent.
pipeline: Option<String>Return only runs whose chain was started by this pipeline.
window: Option<CostWindow>How far back to look. Defaults to the last 24 hours, because a dashboard opening on ninety days of history is answering a question nobody asked.
limit: Option<i32>Maximum number of runs to return, newest first.
Trait Implementations§
Source§impl Clone for ListRunsQuery
impl Clone for ListRunsQuery
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
Source§impl PartialEq for ListRunsQuery
impl PartialEq for ListRunsQuery
Source§impl Serialize for ListRunsQuery
impl Serialize for ListRunsQuery
impl StructuralPartialEq for ListRunsQuery
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