pub trait Unlock<A: Zeroize + Bytes, PM: ProtectMode> {
// Required method
fn munlock(self) -> Result<Protected<A, PM, Unlocked>, Error>;
}Available on crate feature
protected only.Expand description
Protected region of memory that is already locked and can be unlocked.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".