pub enum IdentityHistoryStep {
Name(NameHistoryStep),
Email(EmailHistoryStep),
LoginName(LoginNameHistoryStep),
AvatarUrl(AvatarUrlHistoryStep),
Metadata(MetadataHistoryStep),
}Expand description
The possible steps in the history of an Identity.
Variants§
Name(NameHistoryStep)
A name change in the history.
Email(EmailHistoryStep)
An email change in the history.
LoginName(LoginNameHistoryStep)
An login name change in the history.
AvatarUrl(AvatarUrlHistoryStep)
An avatar URL change in the history.
Metadata(MetadataHistoryStep)
A metadata change in the history.
Trait Implementations§
Source§impl Clone for IdentityHistoryStep
impl Clone for IdentityHistoryStep
Source§fn clone(&self) -> IdentityHistoryStep
fn clone(&self) -> IdentityHistoryStep
Returns a duplicate 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 IdentityHistoryStep
impl Debug for IdentityHistoryStep
Auto Trait Implementations§
impl Freeze for IdentityHistoryStep
impl RefUnwindSafe for IdentityHistoryStep
impl Send for IdentityHistoryStep
impl Sync for IdentityHistoryStep
impl Unpin for IdentityHistoryStep
impl UnwindSafe for IdentityHistoryStep
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