Enum mpc_engine::circuit::WiredGate
source · pub enum WiredGate {
Input(WireIndex),
Xor(WireIndex, WireIndex),
And(WireIndex, WireIndex),
Not(WireIndex),
}
Expand description
An input gate or a logic gate with its input wire specification.
Variants§
Input(WireIndex)
An input wire, with its value coming directly from one of the parties.
Its WireIndex
must refer to its own gate index.
Xor(WireIndex, WireIndex)
A logical XOR gate attached to the two specified input wires. The
WireIndex
of each input wire must refer to a lower index than the
gate’s own index.
And(WireIndex, WireIndex)
A logical AND gate attached to the two specified input wires. The
WireIndex
of each input wire must refer to a lower index than the
gate’s own index.
Not(WireIndex)
A logical NOT gate attached to the specified input wire. The
WireIndex
of the input wire must refer to a lower index than the
gate’s own index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WiredGate
impl RefUnwindSafe for WiredGate
impl Send for WiredGate
impl Sync for WiredGate
impl Unpin for WiredGate
impl UnwindSafe for WiredGate
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