#[non_exhaustive]pub struct UpdateIdentityProfileInput {
pub display_name: Option<String>,
pub account_number: Option<i32>,
pub bio: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.display_name: Option<String>Represent a resource’s readable display name.
account_number: Option<i32>Identity profile account number (#1234). These are assigned in addition to an identity’s display name in order to allow multiple identities to have the same display name while still providing a unique handle. These are unique to each display name; you can have multiple accounts with different display names and the same account number.
bio: Option<String>Detailed information about a profile.
Implementations§
Source§impl UpdateIdentityProfileInput
impl UpdateIdentityProfileInput
Sourcepub async fn make_operation(
&self,
_config: &Config,
) -> Result<Operation<UpdateIdentityProfile, ()>, BuildError>
pub async fn make_operation( &self, _config: &Config, ) -> Result<Operation<UpdateIdentityProfile, ()>, BuildError>
Consumes the builder and constructs an Operation<UpdateIdentityProfile>
Sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateIdentityProfileInput
Source§impl UpdateIdentityProfileInput
impl UpdateIdentityProfileInput
Sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
Represent a resource’s readable display name.
Sourcepub fn account_number(&self) -> Option<i32>
pub fn account_number(&self) -> Option<i32>
Identity profile account number (#1234). These are assigned in addition to an identity’s display name in order to allow multiple identities to have the same display name while still providing a unique handle. These are unique to each display name; you can have multiple accounts with different display names and the same account number.
Trait Implementations§
Source§impl Clone for UpdateIdentityProfileInput
impl Clone for UpdateIdentityProfileInput
Source§fn clone(&self) -> UpdateIdentityProfileInput
fn clone(&self) -> UpdateIdentityProfileInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for UpdateIdentityProfileInput
impl Debug for UpdateIdentityProfileInput
Source§impl PartialEq for UpdateIdentityProfileInput
impl PartialEq for UpdateIdentityProfileInput
Source§fn eq(&self, other: &UpdateIdentityProfileInput) -> bool
fn eq(&self, other: &UpdateIdentityProfileInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateIdentityProfileInput
Auto Trait Implementations§
impl Freeze for UpdateIdentityProfileInput
impl RefUnwindSafe for UpdateIdentityProfileInput
impl Send for UpdateIdentityProfileInput
impl Sync for UpdateIdentityProfileInput
impl Unpin for UpdateIdentityProfileInput
impl UnsafeUnpin for UpdateIdentityProfileInput
impl UnwindSafe for UpdateIdentityProfileInput
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§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