pub struct ExecutedOutput {
pub images: Option<Vec<FileInfo>>,
pub others: HashMap<String, Value>,
}Expand description
Represents the output of an executed node.
Contains the results produced by a node in the workflow after successful
execution. This can include generated or processed images in the images
field, as well as other arbitrary output data in the others map.
Fields§
§images: Option<Vec<FileInfo>>Optional list of image file information objects generated or processed by the node.
others: HashMap<String, Value>Additional output data that doesn’t fit into predefined categories.
Trait Implementations§
Source§impl Clone for ExecutedOutput
impl Clone for ExecutedOutput
Source§fn clone(&self) -> ExecutedOutput
fn clone(&self) -> ExecutedOutput
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 ExecutedOutput
impl Debug for ExecutedOutput
Source§impl<'de> Deserialize<'de> for ExecutedOutput
impl<'de> Deserialize<'de> for ExecutedOutput
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 ExecutedOutput
impl RefUnwindSafe for ExecutedOutput
impl Send for ExecutedOutput
impl Sync for ExecutedOutput
impl Unpin for ExecutedOutput
impl UnwindSafe for ExecutedOutput
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