Enum kimchi::circuits::constraints::GateError
source · pub enum GateError {
DisconnectedWires(Wire, Wire),
IncorrectPublic(usize),
Custom {
row: usize,
err: String,
},
}
Expand description
Represents an error found when verifying a witness with a gate
Variants§
DisconnectedWires(Wire, Wire)
Some connected wires have different values
IncorrectPublic(usize)
A public gate was incorrectly connected
Custom
A specific gate did not verify correctly
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for GateError
impl Send for GateError
impl Sync for GateError
impl Unpin for GateError
impl UnwindSafe for GateError
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