Struct serde_rusqlite::de::RowDeserializer[][src]

pub struct RowDeserializer<'row, 'stmt, 'cols> { /* fields omitted */ }

Deserializer for rusqlite::Row

You shouldn’t use it directly, but via the crate’s from_row() function. Check the crate documentation for example.

Implementations

impl<'row, 'stmt, 'cols> RowDeserializer<'row, 'stmt, 'cols>[src]

pub fn from_row_with_columns(
    row: &'row Row<'stmt>,
    columns: &'cols [String]
) -> Self
[src]

Trait Implementations

impl<'de> Deserializer<'de> for RowDeserializer<'de, '_, '_>[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Read more

Auto Trait Implementations

impl<'row, 'stmt, 'cols> !RefUnwindSafe for RowDeserializer<'row, 'stmt, 'cols>

impl<'row, 'stmt, 'cols> !Send for RowDeserializer<'row, 'stmt, 'cols>

impl<'row, 'stmt, 'cols> !Sync for RowDeserializer<'row, 'stmt, 'cols>

impl<'row, 'stmt, 'cols> Unpin for RowDeserializer<'row, 'stmt, 'cols> where
    'stmt: 'row, 

impl<'row, 'stmt, 'cols> !UnwindSafe for RowDeserializer<'row, 'stmt, 'cols>

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 = 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.