pub struct HumanRoot {
pub id: String,
pub public_key: HybridPublicKey,
pub created_at: i64,
pub anchors: Option<Vec<Anchor>>,
}Expand description
Master identity for a human (or tenant admin).
Fields§
§id: String§public_key: HybridPublicKey§created_at: i64§anchors: Option<Vec<Anchor>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for HumanRoot
impl<'de> Deserialize<'de> for HumanRoot
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 HumanRoot
impl RefUnwindSafe for HumanRoot
impl Send for HumanRoot
impl Sync for HumanRoot
impl Unpin for HumanRoot
impl UnsafeUnpin for HumanRoot
impl UnwindSafe for HumanRoot
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