pub struct Layout<T> {
accs: [Point<T>; 6],
bits: [T; 5],
ss: [T; 5],
base: Point<T>,
n_prev: T,
n_next: T,
}Fields§
§accs: [Point<T>; 6]§bits: [T; 5]§ss: [T; 5]§base: Point<T>§n_prev: T§n_next: TImplementations§
Source§impl Layout<Variable<Column>>
impl Layout<Variable<Column>>
fn create() -> Self
fn new_from_env<F: PrimeField, T: ExprOps<F, BerkeleyChallengeTerm>>( &self, env: &ArgumentEnv<F, T>, ) -> Layout<T>
Auto Trait Implementations§
impl<T> Freeze for Layout<T>where
T: Freeze,
impl<T> RefUnwindSafe for Layout<T>where
T: RefUnwindSafe,
impl<T> Send for Layout<T>where
T: Send,
impl<T> Sync for Layout<T>where
T: Sync,
impl<T> Unpin for Layout<T>where
T: Unpin,
impl<T> UnwindSafe for Layout<T>where
T: UnwindSafe,
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