pub struct ListJobsQuery {
pub job_name: Option<String>,
pub script_name: Option<String>,
pub enabled: Option<bool>,
pub schedule_kind: Option<String>,
pub offset: Option<usize>,
pub limit: Option<usize>,
}Expand description
Query params for GET /jobs.
Fields§
§job_name: Option<String>Exact job name match.
script_name: Option<String>Exact script name match.
enabled: Option<bool>Filter by enabled flag (true / false).
schedule_kind: Option<String>Filter by schedule kind (cron, run_once, manual).
offset: Option<usize>Pagination offset; defaults to 0.
limit: Option<usize>Page size; defaults to 100, capped at 1000.
Trait Implementations§
Source§impl Debug for ListJobsQuery
impl Debug for ListJobsQuery
Source§impl Default for ListJobsQuery
impl Default for ListJobsQuery
Source§fn default() -> ListJobsQuery
fn default() -> ListJobsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListJobsQuery
impl<'de> Deserialize<'de> for ListJobsQuery
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 ListJobsQuery
impl RefUnwindSafe for ListJobsQuery
impl Send for ListJobsQuery
impl Sync for ListJobsQuery
impl Unpin for ListJobsQuery
impl UnsafeUnpin for ListJobsQuery
impl UnwindSafe for ListJobsQuery
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