[]Struct odbc_iter::odbc_type::ffi::SQL_TIMESTAMP_STRUCT

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

Fields

year: i16month: u16day: u16hour: u16minute: u16second: u16fraction: u32

Trait Implementations

impl<'a> OdbcType<'a> for SQL_TIMESTAMP_STRUCT[src]

impl PartialEq<SQL_TIMESTAMP_STRUCT> for SQL_TIMESTAMP_STRUCT

impl Default for SQL_TIMESTAMP_STRUCT

impl Hash for SQL_TIMESTAMP_STRUCT

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for SQL_TIMESTAMP_STRUCT

impl Clone for SQL_TIMESTAMP_STRUCT

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for SQL_TIMESTAMP_STRUCT

impl Copy for SQL_TIMESTAMP_STRUCT

impl From<SQL_TIMESTAMP_STRUCT> for Value[src]

Auto Trait Implementations

Blanket Implementations

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> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

type ContextError = ErrorContext<E, C>

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

impl<'a, T> Output<'a> for T where
    T: OdbcType<'a>, 
[src]