[][src]Enum rants::Authorization

pub enum Authorization {
    Token {
        token: String,
    },
    UsernamePassword {
        username: String,
        password: String,
    },
}

The methods of client authorization set in the Connect message

Variants

Token

Use the auth_token authorization method

Fields of Token

token: String
UsernamePassword

Use the user and pass authorization method

Fields of UsernamePassword

username: Stringpassword: String

Methods

impl Authorization[src]

pub fn token(token: String) -> Self[src]

Create a Authorization::token

pub fn username_password(username: String, password: String) -> Self[src]

Create a Authorization::UsernamePassword

Trait Implementations

impl Clone for Authorization[src]

impl PartialEq<Authorization> for Authorization[src]

impl Debug for Authorization[src]

impl Display for Authorization[src]

impl FromStr for Authorization[src]

type Err = Infallible

The associated error which can be returned from parsing.

impl Serialize for Authorization[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> 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<T> Erased for T[src]

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