[][src]Struct odbc_iter::Row

pub struct Row<'r, 's, 'c, S, C: Configuration> {
    pub schema: &'r [ColumnType],
    pub configuration: &'s C,
    // some fields omitted
}

Represents SQL table row of Column objects.

Fields

schema: &'r [ColumnType]

Schema information about this row

configuration: &'s C

Data access configuration

Implementations

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

pub fn new(
    cursor: Cursor<'s, 'c, 'c, S>,
    schema: &'r [ColumnType],
    settings: &'r Settings,
    configuration: &'s C
) -> Row<'r, 's, 'c, S, C>
[src]

pub fn shift_column<'i>(&'i mut self) -> Option<Column<'i, 's, 'c, S, C>>[src]

pub fn columns(&self) -> u16[src]

Gets number of columns

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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

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, 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>