pub struct MdsMatrixGoldilocks;
Trait Implementations§
Source§impl Clone for MdsMatrixGoldilocks
impl Clone for MdsMatrixGoldilocks
Source§fn clone(&self) -> MdsMatrixGoldilocks
fn clone(&self) -> MdsMatrixGoldilocks
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 moreSource§impl Debug for MdsMatrixGoldilocks
impl Debug for MdsMatrixGoldilocks
Source§impl Default for MdsMatrixGoldilocks
impl Default for MdsMatrixGoldilocks
Source§fn default() -> MdsMatrixGoldilocks
fn default() -> MdsMatrixGoldilocks
Returns the “default value” for a type. Read more
Source§impl Permutation<[Goldilocks; 12]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 12]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 12]) -> [Goldilocks; 12]
fn permute_mut(&self, input: &mut [Goldilocks; 12])
Source§impl Permutation<[Goldilocks; 16]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 16]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 16]) -> [Goldilocks; 16]
fn permute_mut(&self, input: &mut [Goldilocks; 16])
Source§impl Permutation<[Goldilocks; 24]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 24]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 24]) -> [Goldilocks; 24]
fn permute_mut(&self, input: &mut [Goldilocks; 24])
Source§impl Permutation<[Goldilocks; 32]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 32]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 32]) -> [Goldilocks; 32]
fn permute_mut(&self, input: &mut [Goldilocks; 32])
Source§impl Permutation<[Goldilocks; 64]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 64]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 64]) -> [Goldilocks; 64]
fn permute_mut(&self, input: &mut [Goldilocks; 64])
Source§impl Permutation<[Goldilocks; 68]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 68]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 68]) -> [Goldilocks; 68]
fn permute_mut(&self, input: &mut [Goldilocks; 68])
Source§impl Permutation<[Goldilocks; 8]> for MdsMatrixGoldilocks
impl Permutation<[Goldilocks; 8]> for MdsMatrixGoldilocks
fn permute(&self, input: [Goldilocks; 8]) -> [Goldilocks; 8]
fn permute_mut(&self, input: &mut [Goldilocks; 8])
impl MdsPermutation<Goldilocks, 12> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 16> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 24> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 32> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 64> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 68> for MdsMatrixGoldilocks
impl MdsPermutation<Goldilocks, 8> for MdsMatrixGoldilocks
Auto Trait Implementations§
impl Freeze for MdsMatrixGoldilocks
impl RefUnwindSafe for MdsMatrixGoldilocks
impl Send for MdsMatrixGoldilocks
impl Sync for MdsMatrixGoldilocks
impl Unpin for MdsMatrixGoldilocks
impl UnwindSafe for MdsMatrixGoldilocks
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more