#[non_exhaustive]pub struct GetRandomPasswordOutputBuilder { /* private fields */ }
Expand description
A builder for GetRandomPasswordOutput
.
Implementations§
Source§impl GetRandomPasswordOutputBuilder
impl GetRandomPasswordOutputBuilder
Sourcepub fn random_password(self, input: impl Into<String>) -> Self
pub fn random_password(self, input: impl Into<String>) -> Self
A string with the password.
Sourcepub fn set_random_password(self, input: Option<String>) -> Self
pub fn set_random_password(self, input: Option<String>) -> Self
A string with the password.
Sourcepub fn get_random_password(&self) -> &Option<String>
pub fn get_random_password(&self) -> &Option<String>
A string with the password.
Sourcepub fn build(self) -> GetRandomPasswordOutput
pub fn build(self) -> GetRandomPasswordOutput
Consumes the builder and constructs a GetRandomPasswordOutput
.
Trait Implementations§
Source§impl Clone for GetRandomPasswordOutputBuilder
impl Clone for GetRandomPasswordOutputBuilder
Source§fn clone(&self) -> GetRandomPasswordOutputBuilder
fn clone(&self) -> GetRandomPasswordOutputBuilder
Returns a duplicate 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 GetRandomPasswordOutputBuilder
impl Default for GetRandomPasswordOutputBuilder
Source§fn default() -> GetRandomPasswordOutputBuilder
fn default() -> GetRandomPasswordOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetRandomPasswordOutputBuilder
impl PartialEq for GetRandomPasswordOutputBuilder
Source§fn eq(&self, other: &GetRandomPasswordOutputBuilder) -> bool
fn eq(&self, other: &GetRandomPasswordOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRandomPasswordOutputBuilder
Auto Trait Implementations§
impl Freeze for GetRandomPasswordOutputBuilder
impl RefUnwindSafe for GetRandomPasswordOutputBuilder
impl Send for GetRandomPasswordOutputBuilder
impl Sync for GetRandomPasswordOutputBuilder
impl Unpin for GetRandomPasswordOutputBuilder
impl UnwindSafe for GetRandomPasswordOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.