pub enum PutRecordError {
QuorumFailed {
key: Key,
success: Vec<PeerId, Global>,
quorum: NonZeroUsize,
},
Timeout {
key: Key,
success: Vec<PeerId, Global>,
quorum: NonZeroUsize,
},
}
Show fields
Fields of QuorumFailed
PeerId
s of the peers the record was successfully stored on.
Show fields
Fields of Timeout
PeerId
s of the peers the record was successfully stored on.
Gets the key of the record for which the operation failed.
Extracts the key of the record for which the operation failed,
consuming the error.
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.