Struct comfyui_api::models::websocket::ExecutionCached
source · pub struct ExecutionCached {
pub prompt_id: Uuid,
pub nodes: Vec<String>,
}
Expand description
Struct representing an execution cached update.
Fields§
§prompt_id: Uuid
The prompt id.
nodes: Vec<String>
The ids of the nodes that were cached.
Trait Implementations§
source§impl Debug for ExecutionCached
impl Debug for ExecutionCached
source§impl<'de> Deserialize<'de> for ExecutionCached
impl<'de> Deserialize<'de> for ExecutionCached
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 ExecutionCached
impl RefUnwindSafe for ExecutionCached
impl Send for ExecutionCached
impl Sync for ExecutionCached
impl Unpin for ExecutionCached
impl UnwindSafe for ExecutionCached
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