#[non_exhaustive]pub struct ValidateIdentityProfileInput {
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 ValidateIdentityProfileInput
impl ValidateIdentityProfileInput
Sourcepub async fn make_operation(
&self,
_config: &Config,
) -> Result<Operation<ValidateIdentityProfile, ()>, BuildError>
pub async fn make_operation( &self, _config: &Config, ) -> Result<Operation<ValidateIdentityProfile, ()>, BuildError>
Consumes the builder and constructs an Operation<ValidateIdentityProfile>
Sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ValidateIdentityProfileInput
Source§impl ValidateIdentityProfileInput
impl ValidateIdentityProfileInput
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 ValidateIdentityProfileInput
impl Clone for ValidateIdentityProfileInput
Source§fn clone(&self) -> ValidateIdentityProfileInput
fn clone(&self) -> ValidateIdentityProfileInput
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 ValidateIdentityProfileInput
impl Debug for ValidateIdentityProfileInput
Source§impl PartialEq for ValidateIdentityProfileInput
impl PartialEq for ValidateIdentityProfileInput
Source§fn eq(&self, other: &ValidateIdentityProfileInput) -> bool
fn eq(&self, other: &ValidateIdentityProfileInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidateIdentityProfileInput
Auto Trait Implementations§
impl Freeze for ValidateIdentityProfileInput
impl RefUnwindSafe for ValidateIdentityProfileInput
impl Send for ValidateIdentityProfileInput
impl Sync for ValidateIdentityProfileInput
impl Unpin for ValidateIdentityProfileInput
impl UnsafeUnpin for ValidateIdentityProfileInput
impl UnwindSafe for ValidateIdentityProfileInput
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