pub trait FromStaticSqlRow<ST, DB: Backend>: Sized {
    // Required method
    fn build_from_row<'a>(row: &impl Row<'a, DB>) -> Result<Self>;
}
Expand description

A helper trait to deserialize a statically sized row into an tuple

If you see an error message mentioning this trait you likely trying to map the result of an query to an struct with mismatching field types. Recheck your field order and the concrete field types

You should not need to implement this trait directly. Diesel provides wild card implementations for any supported tuple size and for any type that implements FromSql<ST, DB>.

Required Methods§

source

fn build_from_row<'a>(row: &impl Row<'a, DB>) -> Result<Self>

See the trait documentation

Implementations on Foreign Types§

source§

impl<T0, ST0, T1, T2, T3, ST1, ST2, ST3, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST0), __DB> for (T1, T2, T3, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, ST1, __DB> FromStaticSqlRow<(ST1, ST0), __DB> for (T1, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2): SqlType, __T: FromSqlRow<(ST0, ST1, ST2), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, ST1, ST2, ST3, ST4, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST0), __DB> for (T1, T2, T3, T4, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, ST1, ST2, ST3, ST4, ST5, ST6, ST7, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, T62, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, T62, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>, ST59: CompatibleType<T59, __DB>, T59: FromSqlRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB>, ST60: CompatibleType<T60, __DB>, T60: FromSqlRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB>, ST61: CompatibleType<T61, __DB>, T61: FromSqlRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB>, ST62: CompatibleType<T62, __DB>, T62: FromSqlRow<<ST62 as CompatibleType<T62, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST62 as CompatibleType<T62, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, T62, T63, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, T62, T63, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>, ST59: CompatibleType<T59, __DB>, T59: FromSqlRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB>, ST60: CompatibleType<T60, __DB>, T60: FromSqlRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB>, ST61: CompatibleType<T61, __DB>, T61: FromSqlRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB>, ST62: CompatibleType<T62, __DB>, T62: FromSqlRow<<ST62 as CompatibleType<T62, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST62 as CompatibleType<T62, __DB>>::SqlType, __DB>, ST63: CompatibleType<T63, __DB>, T63: FromSqlRow<<ST63 as CompatibleType<T63, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST63 as CompatibleType<T63, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, ST63), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, ST1, ST2, ST3, ST4, ST5, ST6, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST62), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, ST1, ST2, ST3, ST4, ST5, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST0), __DB> for (T1, T2, T3, T4, T5, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, __DB> FromStaticSqlRow<(ST0,), __DB> for (T0,)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, ST1, ST2, __DB> FromStaticSqlRow<(ST1, ST2, ST0), __DB> for (T1, T2, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>, ST59: CompatibleType<T59, __DB>, T59: FromSqlRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, __DB> FromStaticSqlRow<Nullable<(ST0, ST1)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1): SqlType, __T: FromSqlRow<(ST0, ST1), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>, ST59: CompatibleType<T59, __DB>, T59: FromSqlRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB>, ST60: CompatibleType<T60, __DB>, T60: FromSqlRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, ST59, ST60, ST61, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T55, T56, T57, T58, T59, T60, T61, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>, ST55: CompatibleType<T55, __DB>, T55: FromSqlRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST55 as CompatibleType<T55, __DB>>::SqlType, __DB>, ST56: CompatibleType<T56, __DB>, T56: FromSqlRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST56 as CompatibleType<T56, __DB>>::SqlType, __DB>, ST57: CompatibleType<T57, __DB>, T57: FromSqlRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST57 as CompatibleType<T57, __DB>>::SqlType, __DB>, ST58: CompatibleType<T58, __DB>, T58: FromSqlRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST58 as CompatibleType<T58, __DB>>::SqlType, __DB>, ST59: CompatibleType<T59, __DB>, T59: FromSqlRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST59 as CompatibleType<T59, __DB>>::SqlType, __DB>, ST60: CompatibleType<T60, __DB>, T60: FromSqlRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST60 as CompatibleType<T60, __DB>>::SqlType, __DB>, ST61: CompatibleType<T61, __DB>, T61: FromSqlRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST61 as CompatibleType<T61, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T51, T52, T53, T54, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>, ST51: CompatibleType<T51, __DB>, T51: FromSqlRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST51 as CompatibleType<T51, __DB>>::SqlType, __DB>, ST52: CompatibleType<T52, __DB>, T52: FromSqlRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST52 as CompatibleType<T52, __DB>>::SqlType, __DB>, ST53: CompatibleType<T53, __DB>, T53: FromSqlRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST53 as CompatibleType<T53, __DB>>::SqlType, __DB>, ST54: CompatibleType<T54, __DB>, T54: FromSqlRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST54 as CompatibleType<T54, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, ST54, ST55, ST56, ST57, ST58), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>, ST32: CompatibleType<T32, __DB>, T32: FromSqlRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST32 as CompatibleType<T32, __DB>>::SqlType, __DB>, ST33: CompatibleType<T33, __DB>, T33: FromSqlRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST33 as CompatibleType<T33, __DB>>::SqlType, __DB>, ST34: CompatibleType<T34, __DB>, T34: FromSqlRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST34 as CompatibleType<T34, __DB>>::SqlType, __DB>, ST35: CompatibleType<T35, __DB>, T35: FromSqlRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST35 as CompatibleType<T35, __DB>>::SqlType, __DB>, ST36: CompatibleType<T36, __DB>, T36: FromSqlRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST36 as CompatibleType<T36, __DB>>::SqlType, __DB>, ST37: CompatibleType<T37, __DB>, T37: FromSqlRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST37 as CompatibleType<T37, __DB>>::SqlType, __DB>, ST38: CompatibleType<T38, __DB>, T38: FromSqlRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST38 as CompatibleType<T38, __DB>>::SqlType, __DB>, ST39: CompatibleType<T39, __DB>, T39: FromSqlRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST39 as CompatibleType<T39, __DB>>::SqlType, __DB>, ST40: CompatibleType<T40, __DB>, T40: FromSqlRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST40 as CompatibleType<T40, __DB>>::SqlType, __DB>, ST41: CompatibleType<T41, __DB>, T41: FromSqlRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST41 as CompatibleType<T41, __DB>>::SqlType, __DB>, ST42: CompatibleType<T42, __DB>, T42: FromSqlRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST42 as CompatibleType<T42, __DB>>::SqlType, __DB>, ST43: CompatibleType<T43, __DB>, T43: FromSqlRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST43 as CompatibleType<T43, __DB>>::SqlType, __DB>, ST44: CompatibleType<T44, __DB>, T44: FromSqlRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST44 as CompatibleType<T44, __DB>>::SqlType, __DB>, ST45: CompatibleType<T45, __DB>, T45: FromSqlRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST45 as CompatibleType<T45, __DB>>::SqlType, __DB>, ST46: CompatibleType<T46, __DB>, T46: FromSqlRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST46 as CompatibleType<T46, __DB>>::SqlType, __DB>, ST47: CompatibleType<T47, __DB>, T47: FromSqlRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST47 as CompatibleType<T47, __DB>>::SqlType, __DB>, ST48: CompatibleType<T48, __DB>, T48: FromSqlRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST48 as CompatibleType<T48, __DB>>::SqlType, __DB>, ST49: CompatibleType<T49, __DB>, T49: FromSqlRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST49 as CompatibleType<T49, __DB>>::SqlType, __DB>, ST50: CompatibleType<T50, __DB>, T50: FromSqlRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST50 as CompatibleType<T50, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30, T31, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>, ST14: CompatibleType<T14, __DB>, T14: FromSqlRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST14 as CompatibleType<T14, __DB>>::SqlType, __DB>, ST15: CompatibleType<T15, __DB>, T15: FromSqlRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST15 as CompatibleType<T15, __DB>>::SqlType, __DB>, ST16: CompatibleType<T16, __DB>, T16: FromSqlRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST16 as CompatibleType<T16, __DB>>::SqlType, __DB>, ST17: CompatibleType<T17, __DB>, T17: FromSqlRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST17 as CompatibleType<T17, __DB>>::SqlType, __DB>, ST18: CompatibleType<T18, __DB>, T18: FromSqlRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST18 as CompatibleType<T18, __DB>>::SqlType, __DB>, ST19: CompatibleType<T19, __DB>, T19: FromSqlRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST19 as CompatibleType<T19, __DB>>::SqlType, __DB>, ST20: CompatibleType<T20, __DB>, T20: FromSqlRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST20 as CompatibleType<T20, __DB>>::SqlType, __DB>, ST21: CompatibleType<T21, __DB>, T21: FromSqlRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST21 as CompatibleType<T21, __DB>>::SqlType, __DB>, ST22: CompatibleType<T22, __DB>, T22: FromSqlRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST22 as CompatibleType<T22, __DB>>::SqlType, __DB>, ST23: CompatibleType<T23, __DB>, T23: FromSqlRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST23 as CompatibleType<T23, __DB>>::SqlType, __DB>, ST24: CompatibleType<T24, __DB>, T24: FromSqlRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST24 as CompatibleType<T24, __DB>>::SqlType, __DB>, ST25: CompatibleType<T25, __DB>, T25: FromSqlRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST25 as CompatibleType<T25, __DB>>::SqlType, __DB>, ST26: CompatibleType<T26, __DB>, T26: FromSqlRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST26 as CompatibleType<T26, __DB>>::SqlType, __DB>, ST27: CompatibleType<T27, __DB>, T27: FromSqlRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST27 as CompatibleType<T27, __DB>>::SqlType, __DB>, ST28: CompatibleType<T28, __DB>, T28: FromSqlRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST28 as CompatibleType<T28, __DB>>::SqlType, __DB>, ST29: CompatibleType<T29, __DB>, T29: FromSqlRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST29 as CompatibleType<T29, __DB>>::SqlType, __DB>, ST30: CompatibleType<T30, __DB>, T30: FromSqlRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST30 as CompatibleType<T30, __DB>>::SqlType, __DB>, ST31: CompatibleType<T31, __DB>, T31: FromSqlRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST31 as CompatibleType<T31, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, __DB> FromStaticSqlRow<Nullable<(ST0,)>, __DB> for Option<__T>where __DB: Backend, (ST0,): SqlType, __T: FromSqlRow<(ST0,), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<T0, ST0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, __DB> FromStaticSqlRow<(ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST0), __DB> for (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T0)where __DB: Backend, ST0: CompatibleType<T0, __DB>, T0: FromSqlRow<<ST0 as CompatibleType<T0, __DB>>::SqlType, __DB>, ST1: CompatibleType<T1, __DB>, T1: FromSqlRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST1 as CompatibleType<T1, __DB>>::SqlType, __DB>, ST2: CompatibleType<T2, __DB>, T2: FromSqlRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST2 as CompatibleType<T2, __DB>>::SqlType, __DB>, ST3: CompatibleType<T3, __DB>, T3: FromSqlRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST3 as CompatibleType<T3, __DB>>::SqlType, __DB>, ST4: CompatibleType<T4, __DB>, T4: FromSqlRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST4 as CompatibleType<T4, __DB>>::SqlType, __DB>, ST5: CompatibleType<T5, __DB>, T5: FromSqlRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST5 as CompatibleType<T5, __DB>>::SqlType, __DB>, ST6: CompatibleType<T6, __DB>, T6: FromSqlRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST6 as CompatibleType<T6, __DB>>::SqlType, __DB>, ST7: CompatibleType<T7, __DB>, T7: FromSqlRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST7 as CompatibleType<T7, __DB>>::SqlType, __DB>, ST8: CompatibleType<T8, __DB>, T8: FromSqlRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST8 as CompatibleType<T8, __DB>>::SqlType, __DB>, ST9: CompatibleType<T9, __DB>, T9: FromSqlRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST9 as CompatibleType<T9, __DB>>::SqlType, __DB>, ST10: CompatibleType<T10, __DB>, T10: FromSqlRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST10 as CompatibleType<T10, __DB>>::SqlType, __DB>, ST11: CompatibleType<T11, __DB>, T11: FromSqlRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST11 as CompatibleType<T11, __DB>>::SqlType, __DB>, ST12: CompatibleType<T12, __DB>, T12: FromSqlRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST12 as CompatibleType<T12, __DB>>::SqlType, __DB>, ST13: CompatibleType<T13, __DB>, T13: FromSqlRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB> + StaticallySizedRow<<ST13 as CompatibleType<T13, __DB>>::SqlType, __DB>,

source§

fn build_from_row<'a>(full_row: &impl Row<'a, __DB>) -> Result<Self>

source§

impl<__T, ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53, __DB> FromStaticSqlRow<Nullable<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53)>, __DB> for Option<__T>where __DB: Backend, (ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53): SqlType, __T: FromSqlRow<(ST0, ST1, ST2, ST3, ST4, ST5, ST6, ST7, ST8, ST9, ST10, ST11, ST12, ST13, ST14, ST15, ST16, ST17, ST18, ST19, ST20, ST21, ST22, ST23, ST24, ST25, ST26, ST27, ST28, ST29, ST30, ST31, ST32, ST33, ST34, ST35, ST36, ST37, ST38, ST39, ST40, ST41, ST42, ST43, ST44, ST45, ST46, ST47, ST48, ST49, ST50, ST51, ST52, ST53), __DB>,

source§

fn build_from_row<'a>(row: &impl Row<'a, __DB>) -> Result<Self>

Implementors§

source§

impl<T, ST, DB> FromStaticSqlRow<ST, DB> for Twhere DB: Backend, T: FromSql<ST, DB>, ST: SingleValue,