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§
Source§impl<'de, Z> Deserialize<'de> for Zeroizing<Z>where
Z: Zeroize + Deserialize<'de>,
Available on crate feature serde only.
impl<'de, Z> Deserialize<'de> for Zeroizing<Z>where
Z: Zeroize + Deserialize<'de>,
Available on crate feature
serde only.Source§fn deserialize<D>(
deserializer: D,
) -> Result<Zeroizing<Z>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Zeroizing<Z>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Z> Serialize for Zeroizing<Z>
Available on crate feature serde only.
impl<Z> Serialize for Zeroizing<Z>
Available on crate feature
serde only.Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
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> UnsafeUnpin for Zeroizing<Z>where
Z: UnsafeUnpin,
impl<Z> UnwindSafe for Zeroizing<Z>where
Z: UnwindSafe,
Blanket Implementations§
Source§impl<R> TryRngCore for Rwhere
R: TryRng,
impl<R> TryRngCore for Rwhere
R: TryRng,
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Upper case
letters are used (e.g. F9B4CA)