pub struct RecoveryResult {
pub new_device_did: CanonicalDid,
pub new_device_name: Option<String>,
pub revoked_old_did: String,
}Expand description
The outcome of a device recovery: a replacement device was paired and the lost device’s delegation revoked.
Fields§
§new_device_did: CanonicalDidThe newly-paired delegated device’s did:keri:.
new_device_name: Option<String>The new device’s friendly name, if it supplied one.
revoked_old_did: StringThe old device DID whose delegation was revoked.
Auto Trait Implementations§
impl Freeze for RecoveryResult
impl RefUnwindSafe for RecoveryResult
impl Send for RecoveryResult
impl Sync for RecoveryResult
impl Unpin for RecoveryResult
impl UnsafeUnpin for RecoveryResult
impl UnwindSafe for RecoveryResult
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