pub struct AddAuthorization<S> { /* private fields */ }
Expand description
Middleware that adds authorization all requests using the Authorization
header.
See the module docs for an example.
You can also use SetRequestHeader
if you have a use case that isn’t supported by this
middleware.
Implementations§
source§impl<S> AddAuthorization<S>
impl<S> AddAuthorization<S>
sourcepub fn basic(inner: S, username: &str, password: &str) -> Self
pub fn basic(inner: S, username: &str, password: &str) -> Self
Authorize requests using a username and password pair.
The Authorization
header will be set to Basic {credentials}
where credentials
is
base64_encode("{username}:{password}")
.
Since the username and password is sent in clear text it is recommended to use HTTPS/TLS with this method. However use of HTTPS/TLS is not enforced by this middleware.
sourcepub fn bearer(inner: S, token: &str) -> Self
pub fn bearer(inner: S, token: &str) -> Self
Authorize requests using a “bearer token”. Commonly used for OAuth 2.
The Authorization
header will be set to Bearer {token}
.
§Panics
Panics if the token is not a valid HeaderValue
.
sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self
, returning the underlying service.
sourcepub fn as_sensitive(self, sensitive: bool) -> Self
pub fn as_sensitive(self, sensitive: bool) -> Self
Mark the header as sensitive.
This can for example be used to hide the header value from logs.
Trait Implementations§
source§impl<S: Clone> Clone for AddAuthorization<S>
impl<S: Clone> Clone for AddAuthorization<S>
source§fn clone(&self) -> AddAuthorization<S>
fn clone(&self) -> AddAuthorization<S>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<S: Debug> Debug for AddAuthorization<S>
impl<S: Debug> Debug for AddAuthorization<S>
Auto Trait Implementations§
impl<S> !Freeze for AddAuthorization<S>
impl<S> RefUnwindSafe for AddAuthorization<S>where
S: RefUnwindSafe,
impl<S> Send for AddAuthorization<S>where
S: Send,
impl<S> Sync for AddAuthorization<S>where
S: Sync,
impl<S> Unpin for AddAuthorization<S>where
S: Unpin,
impl<S> UnwindSafe for AddAuthorization<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)