pub struct UserProfileUpdatedResponseBuilder<S = Empty>where
S: State,{ /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S> UserProfileUpdatedResponseBuilder<S>where
S: State,
impl<S> UserProfileUpdatedResponseBuilder<S>where
S: State,
Sourcepub fn build(self) -> UserProfileUpdatedResponsewhere
S: IsComplete,
pub fn build(self) -> UserProfileUpdatedResponsewhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn user(self, value: User) -> UserProfileUpdatedResponseBuilder<SetUser<S>>where
<S as State>::User: IsUnset,
pub fn user(self, value: User) -> UserProfileUpdatedResponseBuilder<SetUser<S>>where
<S as State>::User: IsUnset,
Required.
Sourcepub fn from_profile(
self,
value: Profile,
) -> UserProfileUpdatedResponseBuilder<SetFromProfile<S>>where
<S as State>::FromProfile: IsUnset,
pub fn from_profile(
self,
value: Profile,
) -> UserProfileUpdatedResponseBuilder<SetFromProfile<S>>where
<S as State>::FromProfile: IsUnset,
Required.
Sourcepub fn to_profile(
self,
value: Profile,
) -> UserProfileUpdatedResponseBuilder<SetToProfile<S>>where
<S as State>::ToProfile: IsUnset,
pub fn to_profile(
self,
value: Profile,
) -> UserProfileUpdatedResponseBuilder<SetToProfile<S>>where
<S as State>::ToProfile: IsUnset,
Required.
Sourcepub fn update_summary(
self,
value: UserProfileUpdateSummary,
) -> UserProfileUpdatedResponseBuilder<SetUpdateSummary<S>>where
<S as State>::UpdateSummary: IsUnset,
pub fn update_summary(
self,
value: UserProfileUpdateSummary,
) -> UserProfileUpdatedResponseBuilder<SetUpdateSummary<S>>where
<S as State>::UpdateSummary: IsUnset,
Required.
Sourcepub fn undocumented(
self,
value: Value,
) -> UserProfileUpdatedResponseBuilder<SetUndocumented<S>>where
<S as State>::Undocumented: IsUnset,
pub fn undocumented(
self,
value: Value,
) -> UserProfileUpdatedResponseBuilder<SetUndocumented<S>>where
<S as State>::Undocumented: IsUnset,
Sourcepub fn maybe_undocumented(
self,
value: Option<Value>,
) -> UserProfileUpdatedResponseBuilder<SetUndocumented<S>>where
<S as State>::Undocumented: IsUnset,
pub fn maybe_undocumented(
self,
value: Option<Value>,
) -> UserProfileUpdatedResponseBuilder<SetUndocumented<S>>where
<S as State>::Undocumented: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for UserProfileUpdatedResponseBuilder<S>
impl<S> RefUnwindSafe for UserProfileUpdatedResponseBuilder<S>
impl<S> Send for UserProfileUpdatedResponseBuilder<S>
impl<S> Sync for UserProfileUpdatedResponseBuilder<S>
impl<S> Unpin for UserProfileUpdatedResponseBuilder<S>
impl<S> UnsafeUnpin for UserProfileUpdatedResponseBuilder<S>
impl<S> UnwindSafe for UserProfileUpdatedResponseBuilder<S>
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> 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>
Converts
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>
Converts
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