#[non_exhaustive]pub struct UpdateConnectionAuthRequestParameters { /* private fields */ }Expand description
Contains the additional parameters to use for the connection.
Implementations§
source§impl UpdateConnectionAuthRequestParameters
impl UpdateConnectionAuthRequestParameters
sourcepub fn basic_auth_parameters(
&self
) -> Option<&UpdateConnectionBasicAuthRequestParameters>
pub fn basic_auth_parameters(
&self
) -> Option<&UpdateConnectionBasicAuthRequestParameters>
A UpdateConnectionBasicAuthRequestParameters object that contains the authorization parameters for Basic authorization.
sourcepub fn o_auth_parameters(
&self
) -> Option<&UpdateConnectionOAuthRequestParameters>
pub fn o_auth_parameters(
&self
) -> Option<&UpdateConnectionOAuthRequestParameters>
A UpdateConnectionOAuthRequestParameters object that contains the authorization parameters for OAuth authorization.
sourcepub fn api_key_auth_parameters(
&self
) -> Option<&UpdateConnectionApiKeyAuthRequestParameters>
pub fn api_key_auth_parameters(
&self
) -> Option<&UpdateConnectionApiKeyAuthRequestParameters>
A UpdateConnectionApiKeyAuthRequestParameters object that contains the authorization parameters for API key authorization.
sourcepub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
pub fn invocation_http_parameters(&self) -> Option<&ConnectionHttpParameters>
A ConnectionHttpParameters object that contains the additional parameters to use for the connection.
source§impl UpdateConnectionAuthRequestParameters
impl UpdateConnectionAuthRequestParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateConnectionAuthRequestParameters.
Trait Implementations§
source§impl Clone for UpdateConnectionAuthRequestParameters
impl Clone for UpdateConnectionAuthRequestParameters
source§fn clone(&self) -> UpdateConnectionAuthRequestParameters
fn clone(&self) -> UpdateConnectionAuthRequestParameters
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<UpdateConnectionAuthRequestParameters> for UpdateConnectionAuthRequestParameters
impl PartialEq<UpdateConnectionAuthRequestParameters> for UpdateConnectionAuthRequestParameters
source§fn eq(&self, other: &UpdateConnectionAuthRequestParameters) -> bool
fn eq(&self, other: &UpdateConnectionAuthRequestParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.