Trait zeroize::Zeroize

source ·
pub trait Zeroize {
    fn zeroize(&mut self);
}
Expand description

Trait for securely erasing types from memory

Required Methods

Zero out this object from memory (using Rust or OS intrinsics which ensure the zeroization operation is not “optimized away”)

Implementations on Foreign Types

Implement zeroize on all types that can be zeroized with the zero value

Implementors