[][src]Struct sequoia_openpgp::crypto::SessionKey

pub struct SessionKey(_);

Holds a session key.

The session key is cleared when dropped.

Implementations

impl SessionKey[src]

pub fn new(size: usize) -> Self[src]

Creates a new session key.

Trait Implementations

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

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

impl Clone for SessionKey[src]

impl Debug for SessionKey[src]

impl Deref for SessionKey[src]

type Target = [u8]

The resulting type after dereferencing.

impl DerefMut for SessionKey[src]

impl Eq for SessionKey[src]

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

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

impl From<Protected> for SessionKey[src]

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

impl PartialEq<SessionKey> for SessionKey[src]

impl StructuralEq for SessionKey[src]

impl StructuralPartialEq for SessionKey[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.