pub trait Decode {
    // Required method
    fn decode(value: SqliteValue) -> Result<Self, Error>
       where Self: Sized;
}

Required Methods§

source

fn decode(value: SqliteValue) -> Result<Self, Error>where Self: Sized,

Implementations on Foreign Types§

source§

impl Decode for Value

source§

fn decode(value: SqliteValue) -> Result<Self, Error>where Self: Sized,

source§

impl Decode for bool

source§

impl Decode for f32

source§

impl Decode for f64

source§

impl Decode for i8

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for i16

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for i32

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for i64

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for u8

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for u16

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for u32

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for String

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

source§

impl Decode for Vec<u8>

source§

fn decode(value: SqliteValue) -> Result<Self, Error>

Implementors§