pub struct DualStreamStage {
pub name: String,
pub stream_a: String,
pub stream_b: String,
/* private fields */
}Expand description
Transform two named streams in place (e.g. FLUX img/txt dual block).
Fields§
§name: String§stream_a: String§stream_b: StringImplementations§
Trait Implementations§
Source§impl Clone for DualStreamStage
impl Clone for DualStreamStage
Source§fn clone(&self) -> DualStreamStage
fn clone(&self) -> DualStreamStage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DualStreamStage
impl !RefUnwindSafe for DualStreamStage
impl Send for DualStreamStage
impl Sync for DualStreamStage
impl Unpin for DualStreamStage
impl UnsafeUnpin for DualStreamStage
impl !UnwindSafe for DualStreamStage
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