Struct comfyui_api::models::history::History
source · pub struct History {
pub tasks: HashMap<Uuid, Task>,
}
Expand description
Struct containing task results from the ComfyUI API history
endpoint.
Fields§
§tasks: HashMap<Uuid, Task>
Completed tasks indexed by their uuid.
Trait Implementations§
source§impl<'de> Deserialize<'de> for History
impl<'de> Deserialize<'de> for History
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 History
impl !RefUnwindSafe for History
impl Send for History
impl Sync for History
impl Unpin for History
impl !UnwindSafe for History
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