Enum dslab_mr::trace::TraceEvent
source · pub enum TraceEvent {
TaskReady {
time: f64,
dag_id: usize,
stage_id: usize,
task_id: usize,
},
TaskInQueue {
time: f64,
dag_id: usize,
stage_id: usize,
task_id: usize,
host: String,
},
TaskAssigned {
time: f64,
dag_id: usize,
stage_id: usize,
task_id: usize,
host: String,
},
TaskStarted {
time: f64,
dag_id: usize,
stage_id: usize,
task_id: usize,
cores: u32,
memory: u64,
host: String,
},
TaskCompleted {
time: f64,
dag_id: usize,
stage_id: usize,
task_id: usize,
},
DagStarted {
time: f64,
dag_id: usize,
},
DagCompleted {
time: f64,
dag_id: usize,
},
}Expand description
One trace event in a simulation.
Variants§
TaskReady
Fields
Task stage is ready.
TaskInQueue
Fields
Task is waiting in a queue of a specific host for enough resources to start.
TaskAssigned
Fields
Task is assigned to a host and waits for input data to be transfered.
TaskStarted
Fields
Task started processing input.
TaskCompleted
Fields
Task finished processing input.
DagStarted
Dag received by Runner.
DagCompleted
Dag completed.
Implementations§
Trait Implementations§
source§impl Clone for TraceEvent
impl Clone for TraceEvent
source§fn clone(&self) -> TraceEvent
fn clone(&self) -> TraceEvent
Returns a copy 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<'de> Deserialize<'de> for TraceEvent
impl<'de> Deserialize<'de> for TraceEvent
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 TraceEvent
impl RefUnwindSafe for TraceEvent
impl Send for TraceEvent
impl Sync for TraceEvent
impl Unpin for TraceEvent
impl UnwindSafe for TraceEvent
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more