#[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() -> Builder
pub fn builder() -> Builder
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 ==.