pub struct RecoverHandleLocalResult {
pub identity: RecoverLocalIdentitySummary,
pub backup_path: String,
pub archived_identities: Vec<String>,
pub archived_dids: Vec<String>,
pub full_handle: String,
pub final_identity_name: String,
pub store_merge_counts: BTreeMap<String, i64>,
pub e2ee_cleanup_counts: BTreeMap<String, i64>,
pub default_updated: bool,
pub active_config_updated: bool,
}Fields§
§identity: RecoverLocalIdentitySummary§backup_path: String§archived_identities: Vec<String>§archived_dids: Vec<String>§full_handle: String§final_identity_name: String§store_merge_counts: BTreeMap<String, i64>§e2ee_cleanup_counts: BTreeMap<String, i64>§default_updated: bool§active_config_updated: boolTrait Implementations§
Source§impl Clone for RecoverHandleLocalResult
impl Clone for RecoverHandleLocalResult
Source§fn clone(&self) -> RecoverHandleLocalResult
fn clone(&self) -> RecoverHandleLocalResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecoverHandleLocalResult
impl Debug for RecoverHandleLocalResult
Source§impl<'de> Deserialize<'de> for RecoverHandleLocalResult
impl<'de> Deserialize<'de> for RecoverHandleLocalResult
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
Source§impl PartialEq for RecoverHandleLocalResult
impl PartialEq for RecoverHandleLocalResult
Source§fn eq(&self, other: &RecoverHandleLocalResult) -> bool
fn eq(&self, other: &RecoverHandleLocalResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecoverHandleLocalResult
impl Serialize for RecoverHandleLocalResult
impl StructuralPartialEq for RecoverHandleLocalResult
Auto Trait Implementations§
impl Freeze for RecoverHandleLocalResult
impl RefUnwindSafe for RecoverHandleLocalResult
impl Send for RecoverHandleLocalResult
impl Sync for RecoverHandleLocalResult
impl Unpin for RecoverHandleLocalResult
impl UnsafeUnpin for RecoverHandleLocalResult
impl UnwindSafe for RecoverHandleLocalResult
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