Struct comfyui_api::models::websocket::ExecutionInterrupted
source · pub struct ExecutionInterrupted {
pub prompt_id: Uuid,
pub node_id: String,
pub node_type: String,
pub executed: Vec<String>,
}
Expand description
Struct representing an execution interrupted update.
Fields§
§prompt_id: Uuid
The prompt id.
node_id: String
The node that was executing.
node_type: String
The type of the node.
executed: Vec<String>
What was executed prior to interruption.
Trait Implementations§
source§impl Debug for ExecutionInterrupted
impl Debug for ExecutionInterrupted
source§impl<'de> Deserialize<'de> for ExecutionInterrupted
impl<'de> Deserialize<'de> for ExecutionInterrupted
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 ExecutionInterrupted
impl RefUnwindSafe for ExecutionInterrupted
impl Send for ExecutionInterrupted
impl Sync for ExecutionInterrupted
impl Unpin for ExecutionInterrupted
impl UnwindSafe for ExecutionInterrupted
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