pub enum MySqlTimeSign {
Negative,
Positive,
}
Available on crate feature
mysql
only.Expand description
The sign for a MySqlTime
type.
Variantsยง
Negative
The interval is negative (invalid for time-of-day values).
Positive
The interval is positive, or represents a time-of-day.
Implementationsยง
Sourceยงimpl MySqlTimeSign
impl MySqlTimeSign
Sourcepub fn is_positive(&self) -> bool
pub fn is_positive(&self) -> bool
Returns true
if positive, false
if negative.
Sourcepub fn is_negative(&self) -> bool
pub fn is_negative(&self) -> bool
Returns true
if negative, false
if positive.
Trait Implementationsยง
Sourceยงimpl Clone for MySqlTimeSign
impl Clone for MySqlTimeSign
Sourceยงfn clone(&self) -> MySqlTimeSign
fn clone(&self) -> MySqlTimeSign
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 MySqlTimeSign
impl Debug for MySqlTimeSign
Sourceยงimpl Display for MySqlTimeSign
impl Display for MySqlTimeSign
Sourceยงimpl Ord for MySqlTimeSign
impl Ord for MySqlTimeSign
Sourceยงfn cmp(&self, other: &MySqlTimeSign) -> Ordering
fn cmp(&self, other: &MySqlTimeSign) -> 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 MySqlTimeSign
impl PartialEq for MySqlTimeSign
Sourceยงimpl PartialOrd for MySqlTimeSign
impl PartialOrd for MySqlTimeSign
impl Copy for MySqlTimeSign
impl Eq for MySqlTimeSign
impl StructuralPartialEq for MySqlTimeSign
Auto Trait Implementationsยง
impl Freeze for MySqlTimeSign
impl RefUnwindSafe for MySqlTimeSign
impl Send for MySqlTimeSign
impl Sync for MySqlTimeSign
impl Unpin for MySqlTimeSign
impl UnwindSafe for MySqlTimeSign
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงfn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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