pub enum DirectoryRecoveryResponse {
Missing,
FreshPending {
owner_pid: Principal,
created_at: u64,
provisional_pid: Option<Principal>,
},
Bound {
instance_pid: Principal,
bound_at: u64,
},
RepairedToBound {
instance_pid: Principal,
bound_at: u64,
},
ReleasedStalePending {
owner_pid: Principal,
created_at: u64,
provisional_pid: Option<Principal>,
released_at: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for DirectoryRecoveryResponse
impl Clone for DirectoryRecoveryResponse
Source§fn clone(&self) -> DirectoryRecoveryResponse
fn clone(&self) -> DirectoryRecoveryResponse
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 DirectoryRecoveryResponse
impl Debug for DirectoryRecoveryResponse
Source§impl<'de> Deserialize<'de> for DirectoryRecoveryResponse
impl<'de> Deserialize<'de> for DirectoryRecoveryResponse
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
impl Eq for DirectoryRecoveryResponse
Source§impl PartialEq for DirectoryRecoveryResponse
impl PartialEq for DirectoryRecoveryResponse
Source§fn eq(&self, other: &DirectoryRecoveryResponse) -> bool
fn eq(&self, other: &DirectoryRecoveryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DirectoryRecoveryResponse
Auto Trait Implementations§
impl Freeze for DirectoryRecoveryResponse
impl RefUnwindSafe for DirectoryRecoveryResponse
impl Send for DirectoryRecoveryResponse
impl Sync for DirectoryRecoveryResponse
impl Unpin for DirectoryRecoveryResponse
impl UnsafeUnpin for DirectoryRecoveryResponse
impl UnwindSafe for DirectoryRecoveryResponse
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