pub struct Schedule {Show 29 fields
pub path: String,
pub edited_by: String,
pub edited_at: String,
pub schedule: String,
pub timezone: String,
pub enabled: bool,
pub script_path: String,
pub is_flow: bool,
pub args: Option<HashMap<String, Value>>,
pub extra_perms: HashMap<String, bool>,
pub email: String,
pub error: Option<String>,
pub on_failure: Option<String>,
pub on_failure_times: Option<f64>,
pub on_failure_exact: Option<bool>,
pub on_failure_extra_args: Option<HashMap<String, Value>>,
pub on_recovery: Option<String>,
pub on_recovery_times: Option<f64>,
pub on_recovery_extra_args: Option<HashMap<String, Value>>,
pub on_success: Option<String>,
pub on_success_extra_args: Option<HashMap<String, Value>>,
pub ws_error_handler_muted: Option<bool>,
pub retry: Option<Box<Retry>>,
pub summary: Option<String>,
pub description: Option<String>,
pub no_flow_overlap: Option<bool>,
pub tag: Option<String>,
pub paused_until: Option<String>,
pub cron_version: Option<String>,
}
Fields§
§path: String
§edited_by: String
§edited_at: String
§schedule: String
§timezone: String
§enabled: bool
§script_path: String
§is_flow: bool
§args: Option<HashMap<String, Value>>
§extra_perms: HashMap<String, bool>
§email: String
§error: Option<String>
§on_failure: Option<String>
§on_failure_times: Option<f64>
§on_failure_exact: Option<bool>
§on_failure_extra_args: Option<HashMap<String, Value>>
§on_recovery: Option<String>
§on_recovery_times: Option<f64>
§on_recovery_extra_args: Option<HashMap<String, Value>>
§on_success: Option<String>
§on_success_extra_args: Option<HashMap<String, Value>>
§ws_error_handler_muted: Option<bool>
§retry: Option<Box<Retry>>
§summary: Option<String>
§description: Option<String>
§no_flow_overlap: Option<bool>
§tag: Option<String>
§paused_until: Option<String>
§cron_version: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Schedule
impl<'de> Deserialize<'de> for Schedule
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
impl StructuralPartialEq for Schedule
Auto Trait Implementations§
impl Freeze for Schedule
impl RefUnwindSafe for Schedule
impl Send for Schedule
impl Sync for Schedule
impl Unpin for Schedule
impl UnwindSafe for Schedule
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