Struct comfyui_api::models::websocket::ExecutionError
source · pub struct ExecutionError {
pub execution_status: ExecutionInterrupted,
pub exception_message: String,
pub exception_type: String,
pub traceback: Vec<String>,
pub current_inputs: CurrentInputs,
pub current_outputs: CurrentOutputs,
}
Expand description
Struct representing an execution error update.
Fields§
§execution_status: ExecutionInterrupted
The state of execution that was interrupted.
exception_message: String
The exception message.
exception_type: String
The exception type.
traceback: Vec<String>
The traceback.
current_inputs: CurrentInputs
The current inputs.
current_outputs: CurrentOutputs
The current outputs.
Trait Implementations§
source§impl Debug for ExecutionError
impl Debug for ExecutionError
source§impl<'de> Deserialize<'de> for ExecutionError
impl<'de> Deserialize<'de> for ExecutionError
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 ExecutionError
impl RefUnwindSafe for ExecutionError
impl Send for ExecutionError
impl Sync for ExecutionError
impl Unpin for ExecutionError
impl UnwindSafe for ExecutionError
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