SelectExt

Trait SelectExt 

Source
pub trait SelectExt {
    // Required methods
    fn rows_as<T>(self) -> Result<Vec<T>, RowConversionError>
       where T: FromGlueRow;
    fn one_as<T>(self) -> Result<T, RowConversionError>
       where T: FromGlueRow;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl SelectExt for Vec<Payload>

Implementors§