Struct comfyui_api::models::websocket::Executed
source · pub struct Executed {
pub prompt_id: Uuid,
pub node: String,
pub output: Output,
}
Expand description
Struct representing an executed update.
Fields§
§prompt_id: Uuid
The prompt id.
node: String
The node that was executed.
output: Output
The output of the node.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Executed
impl<'de> Deserialize<'de> for Executed
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 Executed
impl RefUnwindSafe for Executed
impl Send for Executed
impl Sync for Executed
impl Unpin for Executed
impl UnwindSafe for Executed
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