pub enum MySqlTimeSign {
    Negative,
    Positive,
}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