#[repr(i16)]pub enum SerialConsistency {
Serial = 8,
LocalSerial = 9,
}
Variants§
Trait Implementations§
Source§impl Clone for SerialConsistency
impl Clone for SerialConsistency
Source§fn clone(&self) -> SerialConsistency
fn clone(&self) -> SerialConsistency
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 SerialConsistency
impl Debug for SerialConsistency
Source§impl Display for SerialConsistency
impl Display for SerialConsistency
Source§impl Ord for SerialConsistency
impl Ord for SerialConsistency
Source§fn cmp(&self, other: &SerialConsistency) -> Ordering
fn cmp(&self, other: &SerialConsistency) -> 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 SerialConsistency
impl PartialEq for SerialConsistency
Source§impl PartialOrd for SerialConsistency
impl PartialOrd for SerialConsistency
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<i16> for SerialConsistency
impl TryFrom<i16> for SerialConsistency
Source§type Error = TryFromPrimitiveError<SerialConsistency>
type Error = TryFromPrimitiveError<SerialConsistency>
The type returned in the event of a conversion error.
Source§fn try_from(
number: i16,
) -> Result<SerialConsistency, TryFromPrimitiveError<SerialConsistency>>
fn try_from( number: i16, ) -> Result<SerialConsistency, TryFromPrimitiveError<SerialConsistency>>
Performs the conversion.
Source§impl TryFromPrimitive for SerialConsistency
impl TryFromPrimitive for SerialConsistency
const NAME: &'static str = "SerialConsistency"
type Primitive = i16
fn try_from_primitive( number: <SerialConsistency as TryFromPrimitive>::Primitive, ) -> Result<SerialConsistency, TryFromPrimitiveError<SerialConsistency>>
impl Copy for SerialConsistency
impl Eq for SerialConsistency
impl StructuralPartialEq for SerialConsistency
Auto Trait Implementations§
impl Freeze for SerialConsistency
impl RefUnwindSafe for SerialConsistency
impl Send for SerialConsistency
impl Sync for SerialConsistency
impl Unpin for SerialConsistency
impl UnwindSafe for SerialConsistency
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