Trait spanner_rs::FromSpanner[][src]

pub trait FromSpanner<'a>: Sized {
    fn from_spanner(tpe: &'a Type, value: &'a Value) -> Result<Self, Error>;

    fn from_spanner_null(tpe: &Type) -> Result<Self, Error> { ... }
fn from_spanner_nullable(
        tpe: &'a Type,
        value: &'a Value
    ) -> Result<Self, Error> { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors