pub struct SetRequestHeaderLayer<M> { /* private fields */ }
Expand description
Layer that applies SetRequestHeader
which adds a request header.
See SetRequestHeader
for more details.
Implementations§
Source§impl<M> SetRequestHeaderLayer<M>
impl<M> SetRequestHeaderLayer<M>
Sourcepub fn overriding(header_name: HeaderName, make: M) -> SetRequestHeaderLayer<M>
pub fn overriding(header_name: HeaderName, make: M) -> SetRequestHeaderLayer<M>
Create a new SetRequestHeaderLayer
.
If a previous value exists for the same header, it is removed and replaced with the new header value.
Sourcepub fn appending(header_name: HeaderName, make: M) -> SetRequestHeaderLayer<M>
pub fn appending(header_name: HeaderName, make: M) -> SetRequestHeaderLayer<M>
Create a new SetRequestHeaderLayer
.
The new header is always added, preserving any existing values. If previous values exist, the header will have multiple values.
Sourcepub fn if_not_present(
header_name: HeaderName,
make: M,
) -> SetRequestHeaderLayer<M>
pub fn if_not_present( header_name: HeaderName, make: M, ) -> SetRequestHeaderLayer<M>
Create a new SetRequestHeaderLayer
.
If a previous value exists for the header, the new value is not inserted.
Trait Implementations§
Source§impl<M> Clone for SetRequestHeaderLayer<M>where
M: Clone,
impl<M> Clone for SetRequestHeaderLayer<M>where
M: Clone,
Source§fn clone(&self) -> SetRequestHeaderLayer<M>
fn clone(&self) -> SetRequestHeaderLayer<M>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<M> Debug for SetRequestHeaderLayer<M>
impl<M> Debug for SetRequestHeaderLayer<M>
Source§impl<S, M> Layer<S> for SetRequestHeaderLayer<M>where
M: Clone,
impl<S, M> Layer<S> for SetRequestHeaderLayer<M>where
M: Clone,
Source§type Service = SetRequestHeader<S, M>
type Service = SetRequestHeader<S, M>
The wrapped service
Auto Trait Implementations§
impl<M> !Freeze for SetRequestHeaderLayer<M>
impl<M> RefUnwindSafe for SetRequestHeaderLayer<M>where
M: RefUnwindSafe,
impl<M> Send for SetRequestHeaderLayer<M>where
M: Send,
impl<M> Sync for SetRequestHeaderLayer<M>where
M: Sync,
impl<M> Unpin for SetRequestHeaderLayer<M>where
M: Unpin,
impl<M> UnwindSafe for SetRequestHeaderLayer<M>where
M: 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
Mutably borrows from an owned value. Read more