[]Struct odbc_iter::odbc_type::ffi::SQL_SS_TIMESTAMPOFFSET_STRUCT

#[repr(C)]
pub struct SQL_SS_TIMESTAMPOFFSET_STRUCT {
    pub year: i16,
    pub month: u16,
    pub day: u16,
    pub hour: u16,
    pub minute: u16,
    pub second: u16,
    pub fraction: u32,
    pub timezone_hour: i16,
    pub timezone_minute: i16,
}

Fields

year: i16month: u16day: u16hour: u16minute: u16second: u16fraction: u32timezone_hour: i16timezone_minute: i16

Trait Implementations

impl Clone for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl Copy for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl Debug for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl Default for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl Eq for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl Hash for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl PartialEq<SQL_SS_TIMESTAMPOFFSET_STRUCT> for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl StructuralEq for SQL_SS_TIMESTAMPOFFSET_STRUCT

impl StructuralPartialEq for SQL_SS_TIMESTAMPOFFSET_STRUCT

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> ToErrorNoContext<T> for 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.

impl<E, C> WrapContext<C> for E[src]

type ContextError = ErrorContext<E, C>