Struct Zeroizing
pub struct Zeroizing<Z>(/* private fields */)
where
Z: Zeroize;Expand description
Zeroizing is a a wrapper for any Z: Zeroize type which implements a
Drop handler which zeroizes dropped values.
Implementations§
Trait Implementations§
impl<Z> Eq for Zeroizing<Z>
impl<Z> StructuralPartialEq for Zeroizing<Z>where
Z: Zeroize,
impl<Z> ZeroizeOnDrop for Zeroizing<Z>where
Z: Zeroize,
Auto Trait Implementations§
impl<Z> Freeze for Zeroizing<Z>where
Z: Freeze,
impl<Z> RefUnwindSafe for Zeroizing<Z>where
Z: RefUnwindSafe,
impl<Z> Send for Zeroizing<Z>where
Z: Send,
impl<Z> Sync for Zeroizing<Z>where
Z: Sync,
impl<Z> Unpin for Zeroizing<Z>where
Z: Unpin,
impl<Z> UnwindSafe for Zeroizing<Z>where
Z: 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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. 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