pub struct KeccakSponge<const ROUNDS: usize> { /* private fields */ }Expand description
A sponge construction based on Keccak p1600
Implementations§
Trait Implementations§
Source§impl<const ROUNDS: usize> Clone for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> Clone for KeccakSponge<ROUNDS>
Source§fn clone(&self) -> KeccakSponge<ROUNDS>
fn clone(&self) -> KeccakSponge<ROUNDS>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<const ROUNDS: usize> Drop for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> Drop for KeccakSponge<ROUNDS>
Auto Trait Implementations§
impl<const ROUNDS: usize> Freeze for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> RefUnwindSafe for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> Send for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> Sync for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> Unpin for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> UnsafeUnpin for KeccakSponge<ROUNDS>
impl<const ROUNDS: usize> UnwindSafe for KeccakSponge<ROUNDS>
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