[][src]Enum mysql_common::packets::AuthPlugin

pub enum AuthPlugin<'a> {
    MysqlNativePassword,
    CachingSha2Password,
    Other(Cow<'a, [u8]>),
}

Authentication plugin

Variants

MysqlNativePassword

Legacy authentication plugin

CachingSha2Password

Default since MySql v8.0.4

Other(Cow<'a, [u8]>)

Methods

impl<'a> AuthPlugin<'a>[src]

pub fn from_bytes(name: &'a [u8]) -> AuthPlugin<'a>[src]

pub fn as_bytes(&self) -> &[u8][src]

pub fn into_owned(self) -> AuthPlugin<'static>[src]

pub fn gen_data(&self, pass: Option<&str>, nonce: &[u8]) -> Option<Vec<u8>>[src]

Generates auth plugin data for this plugin.

It'll generate None if password is None or empty.

Trait Implementations

impl<'a> Clone for AuthPlugin<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> PartialEq<AuthPlugin<'a>> for AuthPlugin<'a>[src]

impl<'a> Eq for AuthPlugin<'a>[src]

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

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

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'a> Unpin for AuthPlugin<'a>

impl<'a> Send for AuthPlugin<'a>

impl<'a> Sync for AuthPlugin<'a>

impl<'a> RefUnwindSafe for AuthPlugin<'a>

impl<'a> UnwindSafe for AuthPlugin<'a>

Blanket Implementations

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self