Enum mpc_engine::circuit::CircuitError
source · pub enum CircuitError {
PartyInputMismatch(usize, usize),
PartyCountMismatch(usize, usize),
InvalidGate(usize),
InvalidOutputWire(usize),
EmptyOutputSpecification,
EmptyInputSpecification,
InvalidInputSpecification,
}
Expand description
Errors occurring during the validation or the execution of the MPC protocol.
Variants§
PartyInputMismatch(usize, usize)
The provided party input does not match the number of input bits for that party expected by the circuit.
PartyCountMismatch(usize, usize)
The provided set of inputs does not match the number of party inputs expected by the circuit.
InvalidGate(usize)
The gate with the specified wire index contains invalid gate connections or is placed out of sequence.
InvalidOutputWire(usize)
The specified output gate does not exist in the circuit.
EmptyOutputSpecification
The circuit does not specify any output gates.
EmptyInputSpecification
The circuit does not specify input wires.
InvalidInputSpecification
The circuit specifies a zero-width input.
Trait Implementations§
source§impl Debug for CircuitError
impl Debug for CircuitError
source§impl Display for CircuitError
impl Display for CircuitError
source§impl PartialEq for CircuitError
impl PartialEq for CircuitError
source§fn eq(&self, other: &CircuitError) -> bool
fn eq(&self, other: &CircuitError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CircuitError
impl StructuralPartialEq for CircuitError
Auto Trait Implementations§
impl Freeze for CircuitError
impl RefUnwindSafe for CircuitError
impl Send for CircuitError
impl Sync for CircuitError
impl Unpin for CircuitError
impl UnwindSafe for CircuitError
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