[][src]Enum htpasswd_verify::Hash

pub enum Hash<'a> {
    MD5(MD5Hash<'a>),
    BCrypt(&'a str),
    SHA1(&'a str),
    Crypt(&'a str),
}

Variants

MD5(MD5Hash<'a>)
BCrypt(&'a str)
SHA1(&'a str)
Crypt(&'a str)

Trait Implementations

impl<'a> Debug for Hash<'a>[src]

Auto Trait Implementations

impl<'a> Send for Hash<'a>

impl<'a> Sync for Hash<'a>

impl<'a> Unpin for Hash<'a>

impl<'a> UnwindSafe for Hash<'a>

impl<'a> RefUnwindSafe for Hash<'a>

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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