#[non_exhaustive]pub struct GetUserDetailsOutput {
pub user_id: Option<String>,
pub user_name: Option<String>,
pub display_name: Option<String>,
pub primary_email: Option<EmailAddress>,
pub version: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_id: Option<String>
The system-generated unique ID of the user.
user_name: Option<String>
The name of the user as displayed in Amazon CodeCatalyst.
display_name: Option<String>
The friendly name displayed for the user in Amazon CodeCatalyst.
primary_email: Option<EmailAddress>
The email address provided by the user when they signed up.
version: Option<String>
Implementations§
source§impl GetUserDetailsOutput
impl GetUserDetailsOutput
sourcepub fn user_name(&self) -> Option<&str>
pub fn user_name(&self) -> Option<&str>
The name of the user as displayed in Amazon CodeCatalyst.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The friendly name displayed for the user in Amazon CodeCatalyst.
sourcepub fn primary_email(&self) -> Option<&EmailAddress>
pub fn primary_email(&self) -> Option<&EmailAddress>
The email address provided by the user when they signed up.
source§impl GetUserDetailsOutput
impl GetUserDetailsOutput
sourcepub fn builder() -> GetUserDetailsOutputBuilder
pub fn builder() -> GetUserDetailsOutputBuilder
Creates a new builder-style object to manufacture GetUserDetailsOutput
.
Trait Implementations§
source§impl Clone for GetUserDetailsOutput
impl Clone for GetUserDetailsOutput
source§fn clone(&self) -> GetUserDetailsOutput
fn clone(&self) -> GetUserDetailsOutput
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 GetUserDetailsOutput
impl Debug for GetUserDetailsOutput
source§impl PartialEq for GetUserDetailsOutput
impl PartialEq for GetUserDetailsOutput
source§fn eq(&self, other: &GetUserDetailsOutput) -> bool
fn eq(&self, other: &GetUserDetailsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetUserDetailsOutput
impl RequestId for GetUserDetailsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetUserDetailsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetUserDetailsOutput
impl Send for GetUserDetailsOutput
impl Sync for GetUserDetailsOutput
impl Unpin for GetUserDetailsOutput
impl UnwindSafe for GetUserDetailsOutput
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.