pub struct TaskEntry {
pub label: String,
pub metrics: Vec<(String, f64)>,
pub cooled_metrics: Vec<(String, f64)>,
pub metadata: TaskMetadata,
}Expand description
A completed task entry stored in the kiln.
Fields§
§label: StringThe task label.
metrics: Vec<(String, f64)>Metrics produced during firing.
cooled_metrics: Vec<(String, f64)>Metrics produced during cooling (may differ from firing).
metadata: TaskMetadataTask metadata.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskEntry
impl RefUnwindSafe for TaskEntry
impl Send for TaskEntry
impl Sync for TaskEntry
impl Unpin for TaskEntry
impl UnsafeUnpin for TaskEntry
impl UnwindSafe for TaskEntry
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