Struct rouille::input::HttpAuthCredentials [] [src]

pub struct HttpAuthCredentials {
    pub login: String,
    pub password: String,
}

Credentials returned by basic_http_auth.

Fields

Login provided by the client.

Password provided by the client.

Trait Implementations

impl Debug for HttpAuthCredentials
[src]

[src]

Formats the value using the given formatter.

impl Clone for HttpAuthCredentials
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for HttpAuthCredentials
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for HttpAuthCredentials
[src]