pub trait BinaryBundleGadgets: FancyBinary {
// Provided method
fn multiplex(
&mut self,
b: &Self::Item,
x: &Bundle<Self::Item>,
y: &Bundle<Self::Item>,
channel: &mut Channel<'_>,
) -> Result<Bundle<Self::Item>> { ... }
}Expand description
Binary operations on wire bundles, extending the capability of FancyBinary operating
on individual wires.