pub struct Blake2x256Macro { /* private fields */ }
Expand description
Computes the BLAKE2b-256 bit hash of a string or byte string literal.
§Note
This is mainly used for analysis and codegen of the blake2x256!
macro.
Implementations§
Trait Implementations§
Source§impl Debug for Blake2x256Macro
impl Debug for Blake2x256Macro
Source§impl TryFrom<TokenStream> for Blake2x256Macro
impl TryFrom<TokenStream> for Blake2x256Macro
Auto Trait Implementations§
impl Freeze for Blake2x256Macro
impl RefUnwindSafe for Blake2x256Macro
impl !Send for Blake2x256Macro
impl !Sync for Blake2x256Macro
impl Unpin for Blake2x256Macro
impl UnwindSafe for Blake2x256Macro
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