pub struct ExecutedEvent {
pub node: String,
pub prompt_id: String,
pub output: Output,
}Expand description
Event payload for a completed execution, including the node identifier, prompt ID, and output data.
Fields§
§node: StringIdentifier of the node that completed execution.
prompt_id: StringThe prompt ID associated with the execution.
output: OutputThe output generated by the executed node.
Trait Implementations§
Source§impl Debug for ExecutedEvent
impl Debug for ExecutedEvent
Source§impl<'de> Deserialize<'de> for ExecutedEvent
impl<'de> Deserialize<'de> for ExecutedEvent
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 ExecutedEvent
impl RefUnwindSafe for ExecutedEvent
impl Send for ExecutedEvent
impl Sync for ExecutedEvent
impl Unpin for ExecutedEvent
impl UnwindSafe for ExecutedEvent
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