pub struct ExecutingEvent {
pub node: String,
pub prompt_id: String,
}Expand description
Event payload for an execution in progress, including the node identifier and prompt ID.
Fields§
§node: StringIdentifier of the node currently executing.
prompt_id: StringThe prompt ID associated with the execution.
Trait Implementations§
Source§impl Debug for ExecutingEvent
impl Debug for ExecutingEvent
Source§impl<'de> Deserialize<'de> for ExecutingEvent
impl<'de> Deserialize<'de> for ExecutingEvent
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 ExecutingEvent
impl RefUnwindSafe for ExecutingEvent
impl Send for ExecutingEvent
impl Sync for ExecutingEvent
impl Unpin for ExecutingEvent
impl UnwindSafe for ExecutingEvent
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