pub struct TruncatedPermutation<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<InnerP: Clone, const N: usize, const CHUNK: usize, const WIDTH: usize> Clone for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
impl<InnerP: Clone, const N: usize, const CHUNK: usize, const WIDTH: usize> Clone for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
Source§fn clone(&self) -> TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
fn clone(&self) -> TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
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<InnerP: Debug, const N: usize, const CHUNK: usize, const WIDTH: usize> Debug for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
impl<InnerP: Debug, const N: usize, const CHUNK: usize, const WIDTH: usize> Debug for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
Source§impl<T, InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> PseudoCompressionFunction<[T; CHUNK], N> for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
impl<T, InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> PseudoCompressionFunction<[T; CHUNK], N> for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>
fn compress(&self, input: [[T; CHUNK]; N]) -> [T; CHUNK]
Auto Trait Implementations§
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> Freeze for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: Freeze,
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> RefUnwindSafe for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: RefUnwindSafe,
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> Send for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: Send,
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> Sync for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: Sync,
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> Unpin for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: Unpin,
impl<InnerP, const N: usize, const CHUNK: usize, const WIDTH: usize> UnwindSafe for TruncatedPermutation<InnerP, N, CHUNK, WIDTH>where
InnerP: 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