pub struct MetadataHistoryStep {
pub author: IdentityStub,
pub metadata: Vec<(String, String)>,
pub at: TimeStamp,
}Expand description
One version of the Identity's metadata in the
history.
Fields§
The author of the change.
metadata: Vec<(String, String)>The new metadata.
at: TimeStampWhen this change happened.
Trait Implementations§
Source§impl Clone for MetadataHistoryStep
impl Clone for MetadataHistoryStep
Source§fn clone(&self) -> MetadataHistoryStep
fn clone(&self) -> MetadataHistoryStep
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 moreAuto Trait Implementations§
impl Freeze for MetadataHistoryStep
impl RefUnwindSafe for MetadataHistoryStep
impl Send for MetadataHistoryStep
impl Sync for MetadataHistoryStep
impl Unpin for MetadataHistoryStep
impl UnwindSafe for MetadataHistoryStep
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