pub struct IdentityData {
pub did: Did,
pub handle: Option<Handle>,
pub seq: u64,
pub time: DateTime<Utc>,
}Expand description
Identity specific data bundled with an identity event.
Fields§
§did: DidThe DID of the identity.
handle: Option<Handle>The handle associated with the identity.
seq: u64§time: DateTime<Utc>Trait Implementations§
Source§impl Debug for IdentityData
impl Debug for IdentityData
Source§impl<'de> Deserialize<'de> for IdentityData
impl<'de> Deserialize<'de> for IdentityData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IdentityData
impl RefUnwindSafe for IdentityData
impl Send for IdentityData
impl Sync for IdentityData
impl Unpin for IdentityData
impl UnwindSafe for IdentityData
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