pub struct UserAgentOverwrites {
pub ua: Option<String>,
pub http: Option<HttpAgent>,
pub tls: Option<TlsAgent>,
pub preserve_ua: Option<bool>,
}
Expand description
Fields§
§ua: Option<String>
Overwrite the UserAgent
of the http Request
with a custom value.
This value will be used instead of the ‘User-Agent’ http (header) value.
This is useful in case you cannot set the User-Agent header in your request.
http: Option<HttpAgent>
Overwrite the HttpAgent
of the http Request
with a custom value.
tls: Option<TlsAgent>
Overwrite the TlsAgent
of the http Request
with a custom value.
preserve_ua: Option<bool>
Preserve the original UserAgent
header of the http Request
.
Trait Implementations§
Source§impl Clone for UserAgentOverwrites
impl Clone for UserAgentOverwrites
Source§fn clone(&self) -> UserAgentOverwrites
fn clone(&self) -> UserAgentOverwrites
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 Debug for UserAgentOverwrites
impl Debug for UserAgentOverwrites
Source§impl Default for UserAgentOverwrites
impl Default for UserAgentOverwrites
Source§fn default() -> UserAgentOverwrites
fn default() -> UserAgentOverwrites
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAgentOverwrites
impl<'de> Deserialize<'de> for UserAgentOverwrites
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UserAgentOverwrites, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UserAgentOverwrites, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UserAgentOverwrites
impl Serialize for UserAgentOverwrites
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for UserAgentOverwrites
impl RefUnwindSafe for UserAgentOverwrites
impl Send for UserAgentOverwrites
impl Sync for UserAgentOverwrites
impl Unpin for UserAgentOverwrites
impl UnwindSafe for UserAgentOverwrites
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more