[][src]Struct sequoia_openpgp::crypto::mem::Protected

pub struct Protected(_);

Protected memory.

The memory is guaranteed not to be copied around, and is cleared when the object is dropped.

use sequoia_openpgp::crypto::mem::Protected;

{
    let p: Protected = vec![0, 1, 2].into();
    assert_eq!(p.as_ref(), &[0, 1, 2]);
}

// p is cleared once it goes out of scope.

Trait Implementations

impl AsMut<[u8]> for Protected[src]

impl AsRef<[u8]> for Protected[src]

impl Clone for Protected[src]

impl Debug for Protected[src]

impl Deref for Protected[src]

type Target = [u8]

The resulting type after dereferencing.

impl DerefMut for Protected[src]

impl Drop for Protected[src]

impl Eq for Protected[src]

impl<'_> From<&'_ [u8]> for Protected[src]

impl From<Box<[u8]>> for Protected[src]

impl From<Protected> for ProtectedMPI[src]

impl From<Protected> for SessionKey[src]

impl From<Vec<u8>> for Protected[src]

impl Hash for Protected[src]

impl PartialEq<Protected> for Protected[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,