pub struct InterceptionRecord {
pub execution_id: String,
pub at: DateTime<Utc>,
pub failed_node: String,
pub issue: Option<String>,
pub summary: String,
pub dsl_before: Option<String>,
pub dsl_after: Option<String>,
}Fields§
§execution_id: String§at: DateTime<Utc>§failed_node: StringLabel/id of the node whose failure triggered the interception.
issue: Option<String>The detected issue (error / validation message), if any.
summary: StringWhat the auto-fix changed/added (e.g. the corrective sub-flow’s nodes).
dsl_before: Option<String>Flow DSL before the fix (the flow that ran) and after it - the snapshot + diff for the History view (roadmap E1 autonomous session history).
dsl_after: Option<String>Trait Implementations§
Source§impl Clone for InterceptionRecord
impl Clone for InterceptionRecord
Source§fn clone(&self) -> InterceptionRecord
fn clone(&self) -> InterceptionRecord
Returns a duplicate 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 InterceptionRecord
impl Debug for InterceptionRecord
Source§impl<'de> Deserialize<'de> for InterceptionRecord
impl<'de> Deserialize<'de> for InterceptionRecord
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 InterceptionRecord
impl RefUnwindSafe for InterceptionRecord
impl Send for InterceptionRecord
impl Sync for InterceptionRecord
impl Unpin for InterceptionRecord
impl UnsafeUnpin for InterceptionRecord
impl UnwindSafe for InterceptionRecord
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