pub struct StartedExecution {
pub execution_id: ExecutionId,
pub executor_id: ExecutorId,
pub started_at: SystemTime,
}Expand description
An execution assigned to an executor.
Fields§
§execution_id: ExecutionIdThe execution ID.
executor_id: ExecutorIdThe executor ID.
started_at: SystemTimeThe timestamp when the execution started.
Auto Trait Implementations§
impl Freeze for StartedExecution
impl RefUnwindSafe for StartedExecution
impl Send for StartedExecution
impl Sync for StartedExecution
impl Unpin for StartedExecution
impl UnwindSafe for StartedExecution
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