pub struct Schedule {
pub id: Option<i32>,
pub status: Option<String>,
pub creation_time: Option<String>,
pub update_time: Option<String>,
pub schedule: Option<Box<ScheduleObj>>,
pub parameters: Option<HashMap<String, Value>>,
}Fields§
§id: Option<i32>The id of the schedule.
status: Option<String>The status of the schedule.
creation_time: Option<String>the creation time of the schedule.
update_time: Option<String>the update time of the schedule.
schedule: Option<Box<ScheduleObj>>§parameters: Option<HashMap<String, Value>>The parameters of schedule job
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