pub struct WorkflowLog {
pub step_id: StepId,
pub log_type: WorkflowLogType,
pub message: String,
pub time: DateTime<Utc>,
}
Fields§
§step_id: StepId
§log_type: WorkflowLogType
§message: String
§time: DateTime<Utc>
Implementations§
Trait Implementations§
Source§impl Clone for WorkflowLog
impl Clone for WorkflowLog
Source§fn clone(&self) -> WorkflowLog
fn clone(&self) -> WorkflowLog
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 Debug for WorkflowLog
impl Debug for WorkflowLog
Source§impl Default for WorkflowLog
impl Default for WorkflowLog
Source§impl<'de> Deserialize<'de> for WorkflowLog
impl<'de> Deserialize<'de> for WorkflowLog
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 WorkflowLog
impl RefUnwindSafe for WorkflowLog
impl Send for WorkflowLog
impl Sync for WorkflowLog
impl Unpin for WorkflowLog
impl UnwindSafe for WorkflowLog
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