pub struct LockAgentLock {
pub is_initialized: bool,
pub is_unlocked: bool,
pub did: Option<String>,
pub did_document: Option<String>,
pub error: Option<String>,
}
Fields§
§is_initialized: bool
§is_unlocked: bool
§did: Option<String>
§did_document: Option<String>
§error: Option<String>
Trait Implementations§
Source§impl Debug for LockAgentLock
impl Debug for LockAgentLock
Source§impl<'de> Deserialize<'de> for LockAgentLock
impl<'de> Deserialize<'de> for LockAgentLock
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 LockAgentLock
impl RefUnwindSafe for LockAgentLock
impl Send for LockAgentLock
impl Sync for LockAgentLock
impl Unpin for LockAgentLock
impl UnwindSafe for LockAgentLock
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