[][src]Struct odbc_iter::Column

pub struct Column<'r, 's, 'c, S, C: Configuration> {
    pub column_type: &'r ColumnType,
    pub configuration: &'s C,
    // some fields omitted
}

Represents SQL table column which can be converted to Rust native type.

Fields

column_type: &'r ColumnType

Type information about this column

configuration: &'s C

Data access configuration

Methods

impl<'r, 's, 'c, S, C: Configuration> Column<'r, 's, 'c, S, C>[src]

Trait Implementations

impl<'r, 's, 'c, S, C: Configuration> Debug for Column<'r, 's, 'c, S, C>[src]

Auto Trait Implementations

impl<'r, 's, 'c, S, C> !Sync for Column<'r, 's, 'c, S, C>

impl<'r, 's, 'c, S, C> Unpin for Column<'r, 's, 'c, S, C> where
    'c: 'r,
    's: 'r, 

impl<'r, 's, 'c, S, C> !Send for Column<'r, 's, 'c, S, C>

impl<'r, 's, 'c, S, C> !UnwindSafe for Column<'r, 's, 'c, S, C>

impl<'r, 's, 'c, S, C> RefUnwindSafe for Column<'r, 's, 'c, S, C> where
    C: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

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

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]