pub enum ExactProbeProgress {
Prepared,
Created {
outcomes: [ProbeCreateOutcome; 2],
},
ReadsVerified {
outcomes: [ProbeCreateOutcome; 2],
},
ConditionalVerified {
outcomes: [ProbeCreateOutcome; 2],
conditional: ConditionalUpdateProbeReceipt,
},
PrimaryAbsent {
outcomes: [ProbeCreateOutcome; 2],
conditional: ConditionalUpdateProbeReceipt,
},
LostResponseCreated {
outcomes: [ProbeCreateOutcome; 2],
conditional: ConditionalUpdateProbeReceipt,
},
LostResponseReadVerified {
outcomes: [ProbeCreateOutcome; 2],
conditional: ConditionalUpdateProbeReceipt,
},
Absent {
outcomes: [ProbeCreateOutcome; 2],
conditional: ConditionalUpdateProbeReceipt,
},
ReceiptReady {
receipt: ExactSlotProbeReceipt,
},
}Variants§
Prepared
Created
Fields
§
outcomes: [ProbeCreateOutcome; 2]ReadsVerified
Fields
§
outcomes: [ProbeCreateOutcome; 2]ConditionalVerified
PrimaryAbsent
LostResponseCreated
LostResponseReadVerified
Absent
ReceiptReady
Fields
§
receipt: ExactSlotProbeReceiptTrait Implementations§
Source§impl Clone for ExactProbeProgress
impl Clone for ExactProbeProgress
Source§fn clone(&self) -> ExactProbeProgress
fn clone(&self) -> ExactProbeProgress
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 ExactProbeProgress
impl Debug for ExactProbeProgress
Source§impl<'de> Deserialize<'de> for ExactProbeProgress
impl<'de> Deserialize<'de> for ExactProbeProgress
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 ExactProbeProgress
impl PartialEq for ExactProbeProgress
Source§impl Serialize for ExactProbeProgress
impl Serialize for ExactProbeProgress
impl Eq for ExactProbeProgress
impl StructuralPartialEq for ExactProbeProgress
Auto Trait Implementations§
impl Freeze for ExactProbeProgress
impl RefUnwindSafe for ExactProbeProgress
impl Send for ExactProbeProgress
impl Sync for ExactProbeProgress
impl Unpin for ExactProbeProgress
impl UnsafeUnpin for ExactProbeProgress
impl UnwindSafe for ExactProbeProgress
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.