Struct comfyui_api::comfy::NodeOutput
source · pub struct NodeOutput {
pub node: String,
pub image: Vec<u8>,
}
Expand description
Output from a node.
Fields§
§node: String
The identifier of the node.
image: Vec<u8>
The image generated by the node.
Trait Implementations§
source§impl Clone for NodeOutput
impl Clone for NodeOutput
source§fn clone(&self) -> NodeOutput
fn clone(&self) -> NodeOutput
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for NodeOutput
impl RefUnwindSafe for NodeOutput
impl Send for NodeOutput
impl Sync for NodeOutput
impl Unpin for NodeOutput
impl UnwindSafe for NodeOutput
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