pub struct StatusEventData {
pub status: StatusEventStatus,
}Expand description
Event payload for a status event, containing execution information.
This structure is received when ComfyUI sends a status update, typically containing information about the current execution queue state.
Fields§
§status: StatusEventStatusExecution information associated with the event, including queue details.
Trait Implementations§
Source§impl Clone for StatusEventData
impl Clone for StatusEventData
Source§fn clone(&self) -> StatusEventData
fn clone(&self) -> StatusEventData
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 StatusEventData
impl Debug for StatusEventData
Source§impl<'de> Deserialize<'de> for StatusEventData
impl<'de> Deserialize<'de> for StatusEventData
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 StatusEventData
impl RefUnwindSafe for StatusEventData
impl Send for StatusEventData
impl Sync for StatusEventData
impl Unpin for StatusEventData
impl UnwindSafe for StatusEventData
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