pub struct TransBuild {
pub operation: Box<dyn Operation>,
pub left: IoUnits,
pub right: IoUnits,
}Expand description
The constructor result: a boxed operation plus engine-facing unit metadata.
Fields§
§operation: Box<dyn Operation>The boxed operation.
left: IoUnitsInput units of the operation (left side of the pipeline).
right: IoUnitsOutput units of the operation (right side of the pipeline).
Implementations§
Source§impl TransBuild
impl TransBuild
Auto Trait Implementations§
impl !RefUnwindSafe for TransBuild
impl !UnwindSafe for TransBuild
impl Freeze for TransBuild
impl Send for TransBuild
impl Sync for TransBuild
impl Unpin for TransBuild
impl UnsafeUnpin for TransBuild
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