pub struct ListRunsQuery {
pub job_id: Option<String>,
pub status: Option<String>,
pub offset: Option<usize>,
pub limit: Option<usize>,
}Expand description
Query params for GET /runs.
Fields§
§job_id: Option<String>Filter by parent job id.
status: Option<String>Filter by status string (case-insensitive).
offset: Option<usize>Pagination offset; defaults to 0 in handlers.
limit: Option<usize>Page size; defaults to 100, capped at chronon_core::MAX_LIST_LIMIT (1000).
Trait Implementations§
Source§impl Debug for ListRunsQuery
impl Debug for ListRunsQuery
Source§impl Default for ListRunsQuery
impl Default for ListRunsQuery
Source§fn default() -> ListRunsQuery
fn default() -> ListRunsQuery
Returns the “default value” for a type. Read more
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