pub struct RecoverHandlePlan {
pub action: String,
pub target_handle: String,
pub identity_name: String,
pub final_identity_name: String,
pub temp_identity_name: String,
pub same_handle_candidates: Vec<RecoverLocalIdentitySummary>,
pub excluded_identities: Vec<RecoverLocalIdentitySummary>,
pub backup_path: String,
pub phone: String,
pub remote_calls: Vec<String>,
pub local_writes: Option<Vec<String>>,
}Fields§
§action: String§target_handle: String§identity_name: String§final_identity_name: String§temp_identity_name: String§same_handle_candidates: Vec<RecoverLocalIdentitySummary>§excluded_identities: Vec<RecoverLocalIdentitySummary>§backup_path: String§phone: String§remote_calls: Vec<String>§local_writes: Option<Vec<String>>Trait Implementations§
Source§impl Clone for RecoverHandlePlan
impl Clone for RecoverHandlePlan
Source§fn clone(&self) -> RecoverHandlePlan
fn clone(&self) -> RecoverHandlePlan
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 RecoverHandlePlan
impl Debug for RecoverHandlePlan
Source§impl<'de> Deserialize<'de> for RecoverHandlePlan
impl<'de> Deserialize<'de> for RecoverHandlePlan
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 RecoverHandlePlan
impl PartialEq for RecoverHandlePlan
Source§fn eq(&self, other: &RecoverHandlePlan) -> bool
fn eq(&self, other: &RecoverHandlePlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecoverHandlePlan
impl Serialize for RecoverHandlePlan
impl StructuralPartialEq for RecoverHandlePlan
Auto Trait Implementations§
impl Freeze for RecoverHandlePlan
impl RefUnwindSafe for RecoverHandlePlan
impl Send for RecoverHandlePlan
impl Sync for RecoverHandlePlan
impl Unpin for RecoverHandlePlan
impl UnsafeUnpin for RecoverHandlePlan
impl UnwindSafe for RecoverHandlePlan
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