#[non_exhaustive]pub struct UpdateConnectionAuthRequestParameters { /* private fields */ }
Expand description
Contains the additional parameters to use for the connection.
Implementations
sourceimpl 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.
sourceimpl UpdateConnectionAuthRequestParameters
impl UpdateConnectionAuthRequestParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateConnectionAuthRequestParameters
.
Trait Implementations
sourceimpl Clone for UpdateConnectionAuthRequestParameters
impl Clone for UpdateConnectionAuthRequestParameters
sourcefn clone(&self) -> UpdateConnectionAuthRequestParameters
fn clone(&self) -> UpdateConnectionAuthRequestParameters
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 moresourceimpl PartialEq<UpdateConnectionAuthRequestParameters> for UpdateConnectionAuthRequestParameters
impl PartialEq<UpdateConnectionAuthRequestParameters> for UpdateConnectionAuthRequestParameters
sourcefn eq(&self, other: &UpdateConnectionAuthRequestParameters) -> bool
fn eq(&self, other: &UpdateConnectionAuthRequestParameters) -> bool
impl StructuralPartialEq for UpdateConnectionAuthRequestParameters
Auto Trait Implementations
impl RefUnwindSafe for UpdateConnectionAuthRequestParameters
impl Send for UpdateConnectionAuthRequestParameters
impl Sync for UpdateConnectionAuthRequestParameters
impl Unpin for UpdateConnectionAuthRequestParameters
impl UnwindSafe for UpdateConnectionAuthRequestParameters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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