pub struct IntegratedCosetMds<F, const N: usize> { /* private fields */ }
Expand description
Like CosetMds
, with a few differences:
- (Bit reversed, a la Bowers) DIF + DIT rather than DIT + DIF
- We skip bit reversals of the inputs and outputs
- We don’t weight by
1/N
, since this doesn’t affect the MDS property - We integrate the coset shifts into the DIF’s twiddle factors
Trait Implementations§
Source§impl<F: Clone, const N: usize> Clone for IntegratedCosetMds<F, N>
impl<F: Clone, const N: usize> Clone for IntegratedCosetMds<F, N>
Source§fn clone(&self) -> IntegratedCosetMds<F, N>
fn clone(&self) -> IntegratedCosetMds<F, N>
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<F: TwoAdicField, const N: usize> Default for IntegratedCosetMds<F, N>
impl<F: TwoAdicField, const N: usize> Default for IntegratedCosetMds<F, N>
Source§impl<AF: AbstractField, const N: usize> Permutation<[AF; N]> for IntegratedCosetMds<AF::F, N>
impl<AF: AbstractField, const N: usize> Permutation<[AF; N]> for IntegratedCosetMds<AF::F, N>
impl<AF: AbstractField, const N: usize> MdsPermutation<AF, N> for IntegratedCosetMds<AF::F, N>
Auto Trait Implementations§
impl<F, const N: usize> Freeze for IntegratedCosetMds<F, N>
impl<F, const N: usize> RefUnwindSafe for IntegratedCosetMds<F, N>where
F: RefUnwindSafe,
impl<F, const N: usize> Send for IntegratedCosetMds<F, N>where
F: Send,
impl<F, const N: usize> Sync for IntegratedCosetMds<F, N>where
F: Sync,
impl<F, const N: usize> Unpin for IntegratedCosetMds<F, N>where
F: Unpin,
impl<F, const N: usize> UnwindSafe for IntegratedCosetMds<F, N>where
F: 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
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