Enum sqlx_mysql::types::MySqlTimeSign
source · 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 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 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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