pub struct DECODE_PRECOMPUTATION_FOR_G { /* private fields */ }
Expand description
Pre-computed HashMap needed for decryption. The HashMap is independent of (works for) any key.
Trait Implementations§
Source§impl Deref for DECODE_PRECOMPUTATION_FOR_G
impl Deref for DECODE_PRECOMPUTATION_FOR_G
Source§type Target = DecodePrecomputation
type Target = DecodePrecomputation
The resulting type after dereferencing.
Source§fn deref(&self) -> &DecodePrecomputation
fn deref(&self) -> &DecodePrecomputation
Dereferences the value.
impl LazyStatic for DECODE_PRECOMPUTATION_FOR_G
Auto Trait Implementations§
impl Freeze for DECODE_PRECOMPUTATION_FOR_G
impl RefUnwindSafe for DECODE_PRECOMPUTATION_FOR_G
impl Send for DECODE_PRECOMPUTATION_FOR_G
impl Sync for DECODE_PRECOMPUTATION_FOR_G
impl Unpin for DECODE_PRECOMPUTATION_FOR_G
impl UnwindSafe for DECODE_PRECOMPUTATION_FOR_G
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