pub struct Schedule {
pub id: String,
pub user_id: Option<String>,
pub name: Option<String>,
pub cron_expression: Option<String>,
pub is_enabled: Option<bool>,
pub extra: Extra,
}Expand description
A schedule that triggers Actor or task runs on a cron expression.
Fields§
§id: StringUnique schedule ID.
user_id: Option<String>ID of the owner.
name: Option<String>Technical name of the schedule.
cron_expression: Option<String>The cron expression that determines when the schedule fires.
is_enabled: Option<bool>Whether the schedule is currently enabled.
extra: ExtraAny other fields returned by the API.
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
Auto Trait Implementations§
impl Freeze for Schedule
impl RefUnwindSafe for Schedule
impl Send for Schedule
impl Sync for Schedule
impl Unpin for Schedule
impl UnsafeUnpin 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