pub struct ExecutingEventData {
pub node: Option<String>,
pub display_node: Option<String>,
pub prompt_id: String,
}Expand description
Event payload for an execution in progress, including the node identifier and prompt ID.
This structure is received when ComfyUI begins executing a specific node in the workflow. It provides information about which node is currently being processed.
Fields§
§node: Option<String>Identifier of the node currently executing. May be None in certain cases.
display_node: Option<String>Optional display name of the executing node, providing a more user-friendly identifier.
prompt_id: StringThe prompt ID associated with the execution, linking this event to a specific workflow run.
Trait Implementations§
Source§impl Clone for ExecutingEventData
impl Clone for ExecutingEventData
Source§fn clone(&self) -> ExecutingEventData
fn clone(&self) -> ExecutingEventData
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 ExecutingEventData
impl Debug for ExecutingEventData
Source§impl<'de> Deserialize<'de> for ExecutingEventData
impl<'de> Deserialize<'de> for ExecutingEventData
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 ExecutingEventData
impl RefUnwindSafe for ExecutingEventData
impl Send for ExecutingEventData
impl Sync for ExecutingEventData
impl Unpin for ExecutingEventData
impl UnwindSafe for ExecutingEventData
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