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§