[][src]Struct rusqlite::Column

pub struct Column<'stmt> { /* fields omitted */ }

Information about a column of a SQLite query.

Methods

impl<'_> Column<'_>[src]

pub fn name(&self) -> &str[src]

Returns the name of the column.

pub fn decl_type(&self) -> Option<&str>[src]

Returns the type of the column (None for expression).

Trait Implementations

impl<'stmt> Debug for Column<'stmt>[src]

Auto Trait Implementations

impl<'stmt> RefUnwindSafe for Column<'stmt>

impl<'stmt> Send for Column<'stmt>

impl<'stmt> Sync for Column<'stmt>

impl<'stmt> Unpin for Column<'stmt>

impl<'stmt> UnwindSafe for Column<'stmt>

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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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.