pub struct FlowLogEntry {
pub timestamp: String,
pub flow_id: String,
pub flow_name: String,
pub action: String,
pub detail: String,
pub run_id: Option<String>,
}Available on crate feature
log only.Expand description
A single line in a flow’s execution log.
Fields§
§timestamp: StringISO-8601 / RFC-3339 timestamp of when the entry was recorded.
flow_id: StringId of the flow this entry belongs to.
flow_name: StringHuman-readable name of the flow at the time the entry was recorded.
action: StringShort verb describing what happened (e.g. "started", "node_ran",
"failed"). The spec does not constrain the value set.
detail: StringLonger free-form detail about the action.
run_id: Option<String>Optional run identifier to correlate entries from a single execution.
Trait Implementations§
Source§impl Clone for FlowLogEntry
impl Clone for FlowLogEntry
Source§fn clone(&self) -> FlowLogEntry
fn clone(&self) -> FlowLogEntry
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 FlowLogEntry
impl Debug for FlowLogEntry
Source§impl<'de> Deserialize<'de> for FlowLogEntry
impl<'de> Deserialize<'de> for FlowLogEntry
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
Source§impl PartialEq for FlowLogEntry
impl PartialEq for FlowLogEntry
Source§fn eq(&self, other: &FlowLogEntry) -> bool
fn eq(&self, other: &FlowLogEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlowLogEntry
impl Serialize for FlowLogEntry
impl StructuralPartialEq for FlowLogEntry
Auto Trait Implementations§
impl Freeze for FlowLogEntry
impl RefUnwindSafe for FlowLogEntry
impl Send for FlowLogEntry
impl Sync for FlowLogEntry
impl Unpin for FlowLogEntry
impl UnsafeUnpin for FlowLogEntry
impl UnwindSafe for FlowLogEntry
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