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§
Sourcefn authenticate(&self, request: RequestBuilder) -> RequestBuilder
fn authenticate(&self, request: RequestBuilder) -> RequestBuilder
Authenticates the Request with the given authentication credentials