pub type Plonky3RoundConstants<F> = RoundConstants<F, POSEIDON2_WIDTH, BABY_BEAR_POSEIDON2_HALF_FULL_ROUNDS, BABY_BEAR_POSEIDON2_PARTIAL_ROUNDS>;
Aliased Type§
struct Plonky3RoundConstants<F> { /* private fields */ }
Implementations
Source§impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>where
F: Field,
impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>where
F: Field,
pub fn new( beginning_full_round_constants: [[F; WIDTH]; HALF_FULL_ROUNDS], partial_round_constants: [F; PARTIAL_ROUNDS], ending_full_round_constants: [[F; WIDTH]; HALF_FULL_ROUNDS], ) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
pub fn from_rng<R>( rng: &mut R, ) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
Trait Implementations§
Source§impl<F: Field> From<Poseidon2Constants<F>> for Plonky3RoundConstants<F>
impl<F: Field> From<Poseidon2Constants<F>> for Plonky3RoundConstants<F>
Source§fn from(constants: Poseidon2Constants<F>) -> Self
fn from(constants: Poseidon2Constants<F>) -> Self
Converts to this type from the input type.
Source§impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> Clone for RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> Clone for RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
Source§fn clone(&self) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
fn clone(&self) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more