Struct kimchi::circuits::argument::ArgumentData
source · pub struct ArgumentData<F: 'static> {
pub witness: ArgumentWitness<F>,
pub coeffs: Vec<F>,
pub constants: Constants<F>,
pub challenges: BerkeleyChallenges<F>,
}
Expand description
Argument environment data for constraints of field elements
Fields§
§witness: ArgumentWitness<F>
Witness rows
coeffs: Vec<F>
Gate coefficients
constants: Constants<F>
Constants
challenges: BerkeleyChallenges<F>
Auto Trait Implementations§
impl<F> RefUnwindSafe for ArgumentData<F>where F: RefUnwindSafe,
impl<F> Send for ArgumentData<F>where F: Send + Sync,
impl<F> Sync for ArgumentData<F>where F: Sync,
impl<F> Unpin for ArgumentData<F>where F: Unpin,
impl<F> UnwindSafe for ArgumentData<F>where F: UnwindSafe + RefUnwindSafe,
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