Struct zeroize::Zeroizing

source ·
pub struct Zeroizing<Z: Zeroize>(/* private fields */);
Expand description

Zeroizing is a a wrapper for any Z: Zeroize type which implements a Drop handler which zeroizes dropped values.

Implementations§

source§

impl<Z> Zeroizing<Z>
where Z: Zeroize,

source

pub fn new(value: Z) -> Self

Move value inside a Zeroizing wrapper which ensures it will be zeroized when it’s dropped.

Trait Implementations§

source§

impl<T, Z> AsMut<T> for Zeroizing<Z>
where T: ?Sized, Z: AsMut<T> + Zeroize,

source§

fn as_mut(&mut self) -> &mut T

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T, Z> AsRef<T> for Zeroizing<Z>
where T: ?Sized, Z: AsRef<T> + Zeroize,

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<Z: Zeroize + Clone> Clone for Zeroizing<Z>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Z: Debug + Zeroize> Debug for Zeroizing<Z>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Z: Default + Zeroize> Default for Zeroizing<Z>

source§

fn default() -> Zeroizing<Z>

Returns the “default value” for a type. Read more
source§

impl<Z> Deref for Zeroizing<Z>
where Z: Zeroize,

§

type Target = Z

The resulting type after dereferencing.
source§

fn deref(&self) -> &Z

Dereferences the value.
source§

impl<Z> DerefMut for Zeroizing<Z>
where Z: Zeroize,

source§

fn deref_mut(&mut self) -> &mut Z

Mutably dereferences the value.
source§

impl<Z> Drop for Zeroizing<Z>
where Z: Zeroize,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<Z> From<Z> for Zeroizing<Z>
where Z: Zeroize,

source§

fn from(value: Z) -> Zeroizing<Z>

Converts to this type from the input type.
source§

impl<Z: PartialEq + Zeroize> PartialEq for Zeroizing<Z>

source§

fn eq(&self, other: &Zeroizing<Z>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Z> Zeroize for Zeroizing<Z>
where Z: Zeroize,

source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
source§

impl<Z: Eq + Zeroize> Eq for Zeroizing<Z>

source§

impl<Z: Zeroize> StructuralPartialEq for Zeroizing<Z>

source§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.