#[non_exhaustive]pub struct CreateActivationOutputBuilder { /* private fields */ }
Expand description
A builder for CreateActivationOutput
.
Implementations§
source§impl CreateActivationOutputBuilder
impl CreateActivationOutputBuilder
sourcepub fn activation_id(self, input: impl Into<String>) -> Self
pub fn activation_id(self, input: impl Into<String>) -> Self
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn set_activation_id(self, input: Option<String>) -> Self
pub fn set_activation_id(self, input: Option<String>) -> Self
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn get_activation_id(&self) -> &Option<String>
pub fn get_activation_id(&self) -> &Option<String>
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn activation_code(self, input: impl Into<String>) -> Self
pub fn activation_code(self, input: impl Into<String>) -> Self
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn set_activation_code(self, input: Option<String>) -> Self
pub fn set_activation_code(self, input: Option<String>) -> Self
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn get_activation_code(&self) -> &Option<String>
pub fn get_activation_code(&self) -> &Option<String>
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn build(self) -> CreateActivationOutput
pub fn build(self) -> CreateActivationOutput
Consumes the builder and constructs a CreateActivationOutput
.
Trait Implementations§
source§impl Clone for CreateActivationOutputBuilder
impl Clone for CreateActivationOutputBuilder
source§fn clone(&self) -> CreateActivationOutputBuilder
fn clone(&self) -> CreateActivationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateActivationOutputBuilder
impl Default for CreateActivationOutputBuilder
source§fn default() -> CreateActivationOutputBuilder
fn default() -> CreateActivationOutputBuilder
source§impl PartialEq for CreateActivationOutputBuilder
impl PartialEq for CreateActivationOutputBuilder
source§fn eq(&self, other: &CreateActivationOutputBuilder) -> bool
fn eq(&self, other: &CreateActivationOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateActivationOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateActivationOutputBuilder
impl RefUnwindSafe for CreateActivationOutputBuilder
impl Send for CreateActivationOutputBuilder
impl Sync for CreateActivationOutputBuilder
impl Unpin for CreateActivationOutputBuilder
impl UnwindSafe for CreateActivationOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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