Trait Authenticate

Source
pub trait Authenticate:
    Sync
    + Send
    + Debug
    + AuthClone {
    // Required method
    fn authenticate(&self, request: RequestBuilder) -> RequestBuilder;
}
Expand description

What the authentication does to the request in order to authenticate the client.

Required Methods§

Source

fn authenticate(&self, request: RequestBuilder) -> RequestBuilder

Authenticates the Request with the given authentication credentials

Implementors§