#[repr(u16)]pub enum Consistency {
Any = 0,
One = 1,
Two = 2,
Three = 3,
Quorum = 4,
All = 5,
LocalQuorum = 6,
EachQuorum = 7,
LocalOne = 10,
Serial = 8,
LocalSerial = 9,
}
Variants§
Any = 0
One = 1
Two = 2
Three = 3
Quorum = 4
All = 5
LocalQuorum = 6
EachQuorum = 7
LocalOne = 10
Serial = 8
LocalSerial = 9
Implementations§
Trait Implementations§
Source§impl Clone for Consistency
impl Clone for Consistency
Source§fn clone(&self) -> Consistency
fn clone(&self) -> Consistency
Returns a copy 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 Consistency
impl Debug for Consistency
Source§impl Default for Consistency
impl Default for Consistency
Source§fn default() -> Consistency
fn default() -> Consistency
Returns the “default value” for a type. Read more
Source§impl Display for Consistency
impl Display for Consistency
Source§impl Ord for Consistency
impl Ord for Consistency
Source§fn cmp(&self, other: &Consistency) -> Ordering
fn cmp(&self, other: &Consistency) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Consistency
impl PartialEq for Consistency
Source§impl PartialOrd for Consistency
impl PartialOrd for Consistency
Source§impl TryFrom<Consistency> for SerialConsistency
impl TryFrom<Consistency> for SerialConsistency
Source§type Error = NonSerialConsistencyError
type Error = NonSerialConsistencyError
The type returned in the event of a conversion error.
Source§fn try_from(
c: Consistency,
) -> Result<SerialConsistency, <SerialConsistency as TryFrom<Consistency>>::Error>
fn try_from( c: Consistency, ) -> Result<SerialConsistency, <SerialConsistency as TryFrom<Consistency>>::Error>
Performs the conversion.
Source§impl TryFrom<u16> for Consistency
impl TryFrom<u16> for Consistency
Source§type Error = TryFromPrimitiveError<Consistency>
type Error = TryFromPrimitiveError<Consistency>
The type returned in the event of a conversion error.
Source§fn try_from(
number: u16,
) -> Result<Consistency, TryFromPrimitiveError<Consistency>>
fn try_from( number: u16, ) -> Result<Consistency, TryFromPrimitiveError<Consistency>>
Performs the conversion.
Source§impl TryFromPrimitive for Consistency
impl TryFromPrimitive for Consistency
const NAME: &'static str = "Consistency"
type Primitive = u16
fn try_from_primitive( number: <Consistency as TryFromPrimitive>::Primitive, ) -> Result<Consistency, TryFromPrimitiveError<Consistency>>
impl Copy for Consistency
impl Eq for Consistency
impl StructuralPartialEq for Consistency
Auto Trait Implementations§
impl Freeze for Consistency
impl RefUnwindSafe for Consistency
impl Send for Consistency
impl Sync for Consistency
impl Unpin for Consistency
impl UnwindSafe for Consistency
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more