pub struct TaskTimelineEntry {
pub timestamp: DateTime<Utc>,
pub kind: String,
pub summary: String,
pub detail_path: Option<PathBuf>,
}Expand description
Timeline entry for a task execution.
Fields§
§timestamp: DateTime<Utc>§kind: String§summary: String§detail_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for TaskTimelineEntry
impl Clone for TaskTimelineEntry
Source§fn clone(&self) -> TaskTimelineEntry
fn clone(&self) -> TaskTimelineEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TaskTimelineEntry
impl Debug for TaskTimelineEntry
Source§impl<'de> Deserialize<'de> for TaskTimelineEntry
impl<'de> Deserialize<'de> for TaskTimelineEntry
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 TaskTimelineEntry
impl RefUnwindSafe for TaskTimelineEntry
impl Send for TaskTimelineEntry
impl Sync for TaskTimelineEntry
impl Unpin for TaskTimelineEntry
impl UnsafeUnpin for TaskTimelineEntry
impl UnwindSafe for TaskTimelineEntry
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