pub struct TaskLog {
pub task_log_reference: TaskLogReference,
pub created_on: Option<OffsetDateTime>,
pub index_location: Option<String>,
pub last_changed_on: Option<OffsetDateTime>,
pub line_count: Option<i64>,
pub path: Option<String>,
}Expand description
A task log connected to a timeline record.
Fields§
§task_log_reference: TaskLogReference§created_on: Option<OffsetDateTime>The time of the task log creation.
index_location: Option<String>The REST URL of the task log when indexed.
last_changed_on: Option<OffsetDateTime>The time of the last modification of the task log.
line_count: Option<i64>The number of the task log lines.
path: Option<String>The path of the task log.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaskLog
impl<'de> Deserialize<'de> for TaskLog
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
impl StructuralPartialEq for TaskLog
Auto Trait Implementations§
impl Freeze for TaskLog
impl RefUnwindSafe for TaskLog
impl Send for TaskLog
impl Sync for TaskLog
impl Unpin for TaskLog
impl UnwindSafe for TaskLog
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