pub struct ScheduleExecution {
pub execution_id: String,
pub start_time: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub status: ExecutionStatus,
pub error_message: Option<String>,
}Expand description
Schedule execution record.
Fields§
§execution_id: StringExecution ID.
start_time: DateTime<Utc>Execution start time.
end_time: Option<DateTime<Utc>>Execution end time.
status: ExecutionStatusExecution status.
error_message: Option<String>Error message if failed.
Trait Implementations§
Source§impl Clone for ScheduleExecution
impl Clone for ScheduleExecution
Source§fn clone(&self) -> ScheduleExecution
fn clone(&self) -> ScheduleExecution
Returns a duplicate of the value. Read more
1.0.0 · 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 ScheduleExecution
impl Debug for ScheduleExecution
Source§impl<'de> Deserialize<'de> for ScheduleExecution
impl<'de> Deserialize<'de> for ScheduleExecution
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 ScheduleExecution
impl RefUnwindSafe for ScheduleExecution
impl Send for ScheduleExecution
impl Sync for ScheduleExecution
impl Unpin for ScheduleExecution
impl UnsafeUnpin for ScheduleExecution
impl UnwindSafe for ScheduleExecution
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