pub struct Sha256Engine { /* private fields */ }Expand description
SHA2-256 hash engine with SIMD support
Implementations§
Source§impl Sha256Engine
impl Sha256Engine
Trait Implementations§
Source§impl Default for Sha256Engine
impl Default for Sha256Engine
Source§impl HashEngine for Sha256Engine
impl HashEngine for Sha256Engine
Auto Trait Implementations§
impl Freeze for Sha256Engine
impl RefUnwindSafe for Sha256Engine
impl Send for Sha256Engine
impl Sync for Sha256Engine
impl Unpin for Sha256Engine
impl UnwindSafe for Sha256Engine
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> 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