#[non_exhaustive]pub struct UpdateConnectionAuthRequestParametersBuilder { /* private fields */ }
Expand description
A builder for UpdateConnectionAuthRequestParameters
.
Implementations§
source§impl UpdateConnectionAuthRequestParametersBuilder
impl UpdateConnectionAuthRequestParametersBuilder
sourcepub fn basic_auth_parameters(
self,
input: UpdateConnectionBasicAuthRequestParameters
) -> Self
pub fn basic_auth_parameters( self, input: UpdateConnectionBasicAuthRequestParameters ) -> Self
A UpdateConnectionBasicAuthRequestParameters
object that contains the authorization parameters for Basic authorization.
sourcepub fn set_basic_auth_parameters(
self,
input: Option<UpdateConnectionBasicAuthRequestParameters>
) -> Self
pub fn set_basic_auth_parameters( self, input: Option<UpdateConnectionBasicAuthRequestParameters> ) -> Self
A UpdateConnectionBasicAuthRequestParameters
object that contains the authorization parameters for Basic authorization.
sourcepub fn get_basic_auth_parameters(
&self
) -> &Option<UpdateConnectionBasicAuthRequestParameters>
pub fn get_basic_auth_parameters( &self ) -> &Option<UpdateConnectionBasicAuthRequestParameters>
A UpdateConnectionBasicAuthRequestParameters
object that contains the authorization parameters for Basic authorization.
sourcepub fn o_auth_parameters(
self,
input: UpdateConnectionOAuthRequestParameters
) -> Self
pub fn o_auth_parameters( self, input: UpdateConnectionOAuthRequestParameters ) -> Self
A UpdateConnectionOAuthRequestParameters
object that contains the authorization parameters for OAuth authorization.
sourcepub fn set_o_auth_parameters(
self,
input: Option<UpdateConnectionOAuthRequestParameters>
) -> Self
pub fn set_o_auth_parameters( self, input: Option<UpdateConnectionOAuthRequestParameters> ) -> Self
A UpdateConnectionOAuthRequestParameters
object that contains the authorization parameters for OAuth authorization.
sourcepub fn get_o_auth_parameters(
&self
) -> &Option<UpdateConnectionOAuthRequestParameters>
pub fn get_o_auth_parameters( &self ) -> &Option<UpdateConnectionOAuthRequestParameters>
A UpdateConnectionOAuthRequestParameters
object that contains the authorization parameters for OAuth authorization.
sourcepub fn api_key_auth_parameters(
self,
input: UpdateConnectionApiKeyAuthRequestParameters
) -> Self
pub fn api_key_auth_parameters( self, input: UpdateConnectionApiKeyAuthRequestParameters ) -> Self
A UpdateConnectionApiKeyAuthRequestParameters
object that contains the authorization parameters for API key authorization.
sourcepub fn set_api_key_auth_parameters(
self,
input: Option<UpdateConnectionApiKeyAuthRequestParameters>
) -> Self
pub fn set_api_key_auth_parameters( self, input: Option<UpdateConnectionApiKeyAuthRequestParameters> ) -> Self
A UpdateConnectionApiKeyAuthRequestParameters
object that contains the authorization parameters for API key authorization.
sourcepub fn get_api_key_auth_parameters(
&self
) -> &Option<UpdateConnectionApiKeyAuthRequestParameters>
pub fn get_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, input: ConnectionHttpParameters) -> Self
pub fn invocation_http_parameters(self, input: ConnectionHttpParameters) -> Self
A ConnectionHttpParameters
object that contains the additional parameters to use for the connection.
sourcepub fn set_invocation_http_parameters(
self,
input: Option<ConnectionHttpParameters>
) -> Self
pub fn set_invocation_http_parameters( self, input: Option<ConnectionHttpParameters> ) -> Self
A ConnectionHttpParameters
object that contains the additional parameters to use for the connection.
sourcepub fn get_invocation_http_parameters(
&self
) -> &Option<ConnectionHttpParameters>
pub fn get_invocation_http_parameters( &self ) -> &Option<ConnectionHttpParameters>
A ConnectionHttpParameters
object that contains the additional parameters to use for the connection.
sourcepub fn build(self) -> UpdateConnectionAuthRequestParameters
pub fn build(self) -> UpdateConnectionAuthRequestParameters
Consumes the builder and constructs a UpdateConnectionAuthRequestParameters
.
Trait Implementations§
source§impl Clone for UpdateConnectionAuthRequestParametersBuilder
impl Clone for UpdateConnectionAuthRequestParametersBuilder
source§fn clone(&self) -> UpdateConnectionAuthRequestParametersBuilder
fn clone(&self) -> UpdateConnectionAuthRequestParametersBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateConnectionAuthRequestParametersBuilder
impl Default for UpdateConnectionAuthRequestParametersBuilder
source§fn default() -> UpdateConnectionAuthRequestParametersBuilder
fn default() -> UpdateConnectionAuthRequestParametersBuilder
source§impl PartialEq for UpdateConnectionAuthRequestParametersBuilder
impl PartialEq for UpdateConnectionAuthRequestParametersBuilder
source§fn eq(&self, other: &UpdateConnectionAuthRequestParametersBuilder) -> bool
fn eq(&self, other: &UpdateConnectionAuthRequestParametersBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateConnectionAuthRequestParametersBuilder
Auto Trait Implementations§
impl Freeze for UpdateConnectionAuthRequestParametersBuilder
impl RefUnwindSafe for UpdateConnectionAuthRequestParametersBuilder
impl Send for UpdateConnectionAuthRequestParametersBuilder
impl Sync for UpdateConnectionAuthRequestParametersBuilder
impl Unpin for UpdateConnectionAuthRequestParametersBuilder
impl UnwindSafe for UpdateConnectionAuthRequestParametersBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more