pub struct StatusEventStatus {
pub exec_info: ExecInfo,
}Expand description
Container for execution information within a status event.
Holds detailed execution information about the current state of the ComfyUI service, such as the number of remaining items in the execution queue.
Fields§
§exec_info: ExecInfoExecution information including queue status and other execution metrics.
Trait Implementations§
Source§impl Clone for StatusEventStatus
impl Clone for StatusEventStatus
Source§fn clone(&self) -> StatusEventStatus
fn clone(&self) -> StatusEventStatus
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 StatusEventStatus
impl Debug for StatusEventStatus
Source§impl<'de> Deserialize<'de> for StatusEventStatus
impl<'de> Deserialize<'de> for StatusEventStatus
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 StatusEventStatus
impl RefUnwindSafe for StatusEventStatus
impl Send for StatusEventStatus
impl Sync for StatusEventStatus
impl Unpin for StatusEventStatus
impl UnwindSafe for StatusEventStatus
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