pub trait Zeroize {
    fn zeroize(&mut self);
}Expand description
Trait for securely erasing values from memory.
Required Methods§
Implementations on Foreign Types§
source§impl<Z> Zeroize for [MaybeUninit<Z>]
 
impl<Z> Zeroize for [MaybeUninit<Z>]
Impl Zeroize on slices of MaybeUninit types.
This impl can eventually be optimized using an memset intrinsic,
such as core::intrinsics::volatile_set_memory.
This fills the slice with zeroes.
Note that this ignore invariants that Z might have, because
MaybeUninit removes all invariants.
source§impl<Z> Zeroize for [Z]where
    Z: DefaultIsZeroes,
 
impl<Z> Zeroize for [Z]where
    Z: DefaultIsZeroes,
Impl Zeroize on slices of types that can be zeroized with Default.
This impl can eventually be optimized using an memset intrinsic,
such as core::intrinsics::volatile_set_memory. For that reason the
blanket impl on slices is bounded by DefaultIsZeroes.
To zeroize a mut slice of Z: Zeroize which does not impl
DefaultIsZeroes, call iter_mut().zeroize().
source§impl<Z> Zeroize for PhantomData<Z>
 
impl<Z> Zeroize for PhantomData<Z>
PhantomData is always zero sized so provide a Zeroize implementation.
source§impl Zeroize for PhantomPinned
 
impl Zeroize for PhantomPinned
PhantomPinned is zero sized so provide a Zeroize implementation.
source§impl<A: Zeroize> Zeroize for (A,)
 
impl<A: Zeroize> Zeroize for (A,)
Generic implementation of Zeroize for tuples up to 10 parameters.