#[non_exhaustive]pub struct ConnectionAuthResponseParameters { /* private fields */ }
Expand description
Contains the authorization parameters to use for the connection.
Implementations§
source§impl ConnectionAuthResponseParameters
impl ConnectionAuthResponseParameters
sourcepub fn basic_auth_parameters(
&self
) -> Option<&ConnectionBasicAuthResponseParameters>
pub fn basic_auth_parameters( &self ) -> Option<&ConnectionBasicAuthResponseParameters>
The authorization parameters for Basic authorization.
sourcepub fn o_auth_parameters(&self) -> Option<&ConnectionOAuthResponseParameters>
pub fn o_auth_parameters(&self) -> Option<&ConnectionOAuthResponseParameters>
The OAuth parameters to use for authorization.
sourcepub fn api_key_auth_parameters(
&self
) -> Option<&ConnectionApiKeyAuthResponseParameters>
pub fn api_key_auth_parameters( &self ) -> Option<&ConnectionApiKeyAuthResponseParameters>
The API Key parameters to use for authorization.
sourcepub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
pub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
Additional parameters for the connection that are passed through with every invocation to the HTTP endpoint.
source§impl ConnectionAuthResponseParameters
impl ConnectionAuthResponseParameters
sourcepub fn builder() -> ConnectionAuthResponseParametersBuilder
pub fn builder() -> ConnectionAuthResponseParametersBuilder
Creates a new builder-style object to manufacture ConnectionAuthResponseParameters
.
Trait Implementations§
source§impl Clone for ConnectionAuthResponseParameters
impl Clone for ConnectionAuthResponseParameters
source§fn clone(&self) -> ConnectionAuthResponseParameters
fn clone(&self) -> ConnectionAuthResponseParameters
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 PartialEq<ConnectionAuthResponseParameters> for ConnectionAuthResponseParameters
impl PartialEq<ConnectionAuthResponseParameters> for ConnectionAuthResponseParameters
source§fn eq(&self, other: &ConnectionAuthResponseParameters) -> bool
fn eq(&self, other: &ConnectionAuthResponseParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConnectionAuthResponseParameters
Auto Trait Implementations§
impl RefUnwindSafe for ConnectionAuthResponseParameters
impl Send for ConnectionAuthResponseParameters
impl Sync for ConnectionAuthResponseParameters
impl Unpin for ConnectionAuthResponseParameters
impl UnwindSafe for ConnectionAuthResponseParameters
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