#[non_exhaustive]pub struct UserProfileDetailsBuilder { /* private fields */ }
Expand description
A builder for UserProfileDetails
.
Implementations§
source§impl UserProfileDetailsBuilder
impl UserProfileDetailsBuilder
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The domain ID.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The domain ID.
sourcepub fn user_profile_name(self, input: impl Into<String>) -> Self
pub fn user_profile_name(self, input: impl Into<String>) -> Self
The user profile name.
sourcepub fn set_user_profile_name(self, input: Option<String>) -> Self
pub fn set_user_profile_name(self, input: Option<String>) -> Self
The user profile name.
sourcepub fn get_user_profile_name(&self) -> &Option<String>
pub fn get_user_profile_name(&self) -> &Option<String>
The user profile name.
sourcepub fn status(self, input: UserProfileStatus) -> Self
pub fn status(self, input: UserProfileStatus) -> Self
The status.
sourcepub fn set_status(self, input: Option<UserProfileStatus>) -> Self
pub fn set_status(self, input: Option<UserProfileStatus>) -> Self
The status.
sourcepub fn get_status(&self) -> &Option<UserProfileStatus>
pub fn get_status(&self) -> &Option<UserProfileStatus>
The status.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The creation time.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The creation time.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The creation time.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The last modified time.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The last modified time.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The last modified time.
sourcepub fn build(self) -> UserProfileDetails
pub fn build(self) -> UserProfileDetails
Consumes the builder and constructs a UserProfileDetails
.
Trait Implementations§
source§impl Clone for UserProfileDetailsBuilder
impl Clone for UserProfileDetailsBuilder
source§fn clone(&self) -> UserProfileDetailsBuilder
fn clone(&self) -> UserProfileDetailsBuilder
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 Debug for UserProfileDetailsBuilder
impl Debug for UserProfileDetailsBuilder
source§impl Default for UserProfileDetailsBuilder
impl Default for UserProfileDetailsBuilder
source§fn default() -> UserProfileDetailsBuilder
fn default() -> UserProfileDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UserProfileDetailsBuilder
impl PartialEq for UserProfileDetailsBuilder
source§fn eq(&self, other: &UserProfileDetailsBuilder) -> bool
fn eq(&self, other: &UserProfileDetailsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserProfileDetailsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UserProfileDetailsBuilder
impl Send for UserProfileDetailsBuilder
impl Sync for UserProfileDetailsBuilder
impl Unpin for UserProfileDetailsBuilder
impl UnwindSafe for UserProfileDetailsBuilder
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>
Creates a shared type from an unshared type.