Struct comfyui_api::models::websocket::Executing
source · pub struct Executing {
pub prompt_id: Option<Uuid>,
pub node: Option<String>,
}
Expand description
Struct representing an executing update.
Fields§
§prompt_id: Option<Uuid>
The prompt id. None if reconnecting to a session.
node: Option<String>
The node that is executing. None if execution is finished.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Executing
impl<'de> Deserialize<'de> for Executing
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 Executing
impl RefUnwindSafe for Executing
impl Send for Executing
impl Sync for Executing
impl Unpin for Executing
impl UnwindSafe for Executing
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