#[non_exhaustive]pub struct ConnectionHttpParameters {
pub header_parameters: Option<Vec<ConnectionHeaderParameter>>,
pub query_string_parameters: Option<Vec<ConnectionQueryStringParameter>>,
pub body_parameters: Option<Vec<ConnectionBodyParameter>>,
}
Expand description
Contains additional parameters for the connection.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.header_parameters: Option<Vec<ConnectionHeaderParameter>>
Contains additional header parameters for the connection.
query_string_parameters: Option<Vec<ConnectionQueryStringParameter>>
Contains additional query string parameters for the connection.
body_parameters: Option<Vec<ConnectionBodyParameter>>
Contains additional body string parameters for the connection.
Implementations
sourceimpl ConnectionHttpParameters
impl ConnectionHttpParameters
sourcepub fn header_parameters(&self) -> Option<&[ConnectionHeaderParameter]>
pub fn header_parameters(&self) -> Option<&[ConnectionHeaderParameter]>
Contains additional header parameters for the connection.
sourcepub fn query_string_parameters(
&self
) -> Option<&[ConnectionQueryStringParameter]>
pub fn query_string_parameters(
&self
) -> Option<&[ConnectionQueryStringParameter]>
Contains additional query string parameters for the connection.
sourcepub fn body_parameters(&self) -> Option<&[ConnectionBodyParameter]>
pub fn body_parameters(&self) -> Option<&[ConnectionBodyParameter]>
Contains additional body string parameters for the connection.
sourceimpl ConnectionHttpParameters
impl ConnectionHttpParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConnectionHttpParameters
Trait Implementations
sourceimpl Clone for ConnectionHttpParameters
impl Clone for ConnectionHttpParameters
sourcefn clone(&self) -> ConnectionHttpParameters
fn clone(&self) -> ConnectionHttpParameters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ConnectionHttpParameters
impl Debug for ConnectionHttpParameters
sourceimpl PartialEq<ConnectionHttpParameters> for ConnectionHttpParameters
impl PartialEq<ConnectionHttpParameters> for ConnectionHttpParameters
sourcefn eq(&self, other: &ConnectionHttpParameters) -> bool
fn eq(&self, other: &ConnectionHttpParameters) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ConnectionHttpParameters) -> bool
fn ne(&self, other: &ConnectionHttpParameters) -> bool
This method tests for !=
.
impl StructuralPartialEq for ConnectionHttpParameters
Auto Trait Implementations
impl RefUnwindSafe for ConnectionHttpParameters
impl Send for ConnectionHttpParameters
impl Sync for ConnectionHttpParameters
impl Unpin for ConnectionHttpParameters
impl UnwindSafe for ConnectionHttpParameters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more