Enum comfyui_api::models::websocket::Update
source · pub enum Update {
Status {
status: Status,
},
Progress(Progress),
ExecutionStart(ExecutionStart),
Executing(Executing),
Executed(Executed),
ExecutionCached(ExecutionCached),
ExecutionInterrupted(ExecutionInterrupted),
ExecutionError(ExecutionError),
}
Expand description
Enum of possible update variants.
Variants§
Status
Enum variant representing a status update.
Progress(Progress)
Enum variant representing a progress update.
ExecutionStart(ExecutionStart)
Enum variant representing an execution start update.
Executing(Executing)
Enum variant representing an executing update.
Executed(Executed)
Enum variant representing an executed update.
ExecutionCached(ExecutionCached)
Enum variant representing an execution cached update.
ExecutionInterrupted(ExecutionInterrupted)
Enum variant representing an execution interrupted update.
ExecutionError(ExecutionError)
Enum variant representing an execution error update.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Update
impl<'de> Deserialize<'de> for Update
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 Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnwindSafe for Update
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