pub struct ScheduleRow {
pub namespace: String,
pub schedule_id: String,
pub workflow_type: String,
pub paused: bool,
pub notes: String,
pub spec: String,
pub next_run: Option<i64>,
pub recent_runs: usize,
}Expand description
One row of the schedule list.
Fields§
§namespace: String§schedule_id: String§workflow_type: String§paused: bool§notes: String§spec: StringA readable form of the timetable, from describe_spec.
next_run: Option<i64>Epoch millis of the next run, when the server offered one.
recent_runs: usizeImplementations§
Trait Implementations§
Source§impl Clone for ScheduleRow
impl Clone for ScheduleRow
Source§fn clone(&self) -> ScheduleRow
fn clone(&self) -> ScheduleRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScheduleRow
impl Debug for ScheduleRow
impl Eq for ScheduleRow
Source§impl PartialEq for ScheduleRow
impl PartialEq for ScheduleRow
impl StructuralPartialEq for ScheduleRow
Auto Trait Implementations§
impl Freeze for ScheduleRow
impl RefUnwindSafe for ScheduleRow
impl Send for ScheduleRow
impl Sync for ScheduleRow
impl Unpin for ScheduleRow
impl UnsafeUnpin for ScheduleRow
impl UnwindSafe for ScheduleRow
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