[][src]Struct sequoia_openpgp::crypto::Password

pub struct Password(_);

Holds a password.

The password is encrypted in memory and only decrypted on demand. See mem::Encrypted for details.

Methods

impl Password[src]

pub fn map<F, T>(&self, fun: F) -> T where
    F: FnMut(&Protected) -> T, 
[src]

Maps the given function over the password.

Trait Implementations

impl Clone for Password[src]

impl Debug for Password[src]

impl Eq for Password[src]

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

impl<'a> From<&'a str> for Password[src]

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

impl From<String> for Password[src]

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

impl PartialEq<Password> for Password[src]

impl StructuralEq for Password[src]

impl StructuralPartialEq for Password[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>,