Enum odbc_sys::Interval[][src]

#[repr(C)]pub enum Interval {
    Year,
    Month,
    Day,
    Hour,
    Minute,
    Second,
    YearToMonth,
    DayToHour,
    DayToMinute,
    DayToSecond,
    HourToMinute,
    HourToSecond,
    MinuteToSecond,
}

Variants

Year

SQL_IS_YEAR

Month

SQL_IS_MONTH,

Day

SQL_IS_DAY,

Hour

SQL_IS_HOUR,

Minute

SQL_IS_MINUTE,

Second

SQL_IS_SECOND,

YearToMonth

SQL_IS_YEAR_TO_MONTH,

DayToHour

SQL_IS_DAY_TO_HOUR,

DayToMinute

SQL_IS_DAY_TO_MINUTE,

DayToSecond

SQL_IS_DAY_TO_SECOND,

HourToMinute

SQL_IS_HOUR_TO_MINUTE,

HourToSecond

SQL_IS_HOUR_TO_SECOND,

MinuteToSecond

SQL_IS_MINUTE_TO_SECOND,

Trait Implementations

impl Clone for Interval[src]

impl Copy for Interval[src]

impl Debug for Interval[src]

impl Eq for Interval[src]

impl PartialEq<Interval> for Interval[src]

impl StructuralEq for Interval[src]

impl StructuralPartialEq for Interval[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.