pub enum RetainedReplayAuthority {
Genesis(RetainedReplayGenesisAuthority),
InstalledSnapshot(RetainedReplaySnapshotAuthority),
}Variants§
Genesis(RetainedReplayGenesisAuthority)
InstalledSnapshot(RetainedReplaySnapshotAuthority)
The device installed a snapshot image and replays forward from it. Named for what happened, not for a property of the snapshot: installing one never required the store’s other devices to have acknowledged it.
Trait Implementations§
Source§impl Clone for RetainedReplayAuthority
impl Clone for RetainedReplayAuthority
Source§fn clone(&self) -> RetainedReplayAuthority
fn clone(&self) -> RetainedReplayAuthority
Returns a duplicate of the value. Read more
1.0.0 · 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 RetainedReplayAuthority
impl Debug for RetainedReplayAuthority
Source§impl<'de> Deserialize<'de> for RetainedReplayAuthority
impl<'de> Deserialize<'de> for RetainedReplayAuthority
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 RetainedReplayAuthority
impl PartialEq for RetainedReplayAuthority
Source§impl Serialize for RetainedReplayAuthority
impl Serialize for RetainedReplayAuthority
impl Eq for RetainedReplayAuthority
impl StructuralPartialEq for RetainedReplayAuthority
Auto Trait Implementations§
impl !Freeze for RetainedReplayAuthority
impl RefUnwindSafe for RetainedReplayAuthority
impl Send for RetainedReplayAuthority
impl Sync for RetainedReplayAuthority
impl Unpin for RetainedReplayAuthority
impl UnsafeUnpin for RetainedReplayAuthority
impl UnwindSafe for RetainedReplayAuthority
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.