#[non_exhaustive]pub struct ConnectionBodyParameterBuilder { /* private fields */ }Expand description
A builder for ConnectionBodyParameter.
Implementations§
source§impl ConnectionBodyParameterBuilder
impl ConnectionBodyParameterBuilder
sourcepub fn is_value_secret(self, input: bool) -> Self
pub fn is_value_secret(self, input: bool) -> Self
Specified whether the value is secret.
sourcepub fn set_is_value_secret(self, input: Option<bool>) -> Self
pub fn set_is_value_secret(self, input: Option<bool>) -> Self
Specified whether the value is secret.
sourcepub fn get_is_value_secret(&self) -> &Option<bool>
pub fn get_is_value_secret(&self) -> &Option<bool>
Specified whether the value is secret.
sourcepub fn build(self) -> ConnectionBodyParameter
pub fn build(self) -> ConnectionBodyParameter
Consumes the builder and constructs a ConnectionBodyParameter.
Trait Implementations§
source§impl Clone for ConnectionBodyParameterBuilder
impl Clone for ConnectionBodyParameterBuilder
source§fn clone(&self) -> ConnectionBodyParameterBuilder
fn clone(&self) -> ConnectionBodyParameterBuilder
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 Default for ConnectionBodyParameterBuilder
impl Default for ConnectionBodyParameterBuilder
source§fn default() -> ConnectionBodyParameterBuilder
fn default() -> ConnectionBodyParameterBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ConnectionBodyParameterBuilder
impl PartialEq for ConnectionBodyParameterBuilder
source§fn eq(&self, other: &ConnectionBodyParameterBuilder) -> bool
fn eq(&self, other: &ConnectionBodyParameterBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConnectionBodyParameterBuilder
Auto Trait Implementations§
impl Freeze for ConnectionBodyParameterBuilder
impl RefUnwindSafe for ConnectionBodyParameterBuilder
impl Send for ConnectionBodyParameterBuilder
impl Sync for ConnectionBodyParameterBuilder
impl Unpin for ConnectionBodyParameterBuilder
impl UnwindSafe for ConnectionBodyParameterBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.