Trait Decode

pub trait Decode<'r, DB>: Sized
where DB: Database,
{ // Required method fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<Self, Box<dyn Error + Sync + Send>>; }
Expand description

A type that can be decoded from the database.

§How can I implement Decode?

A manual implementation of Decode can be useful when adding support for types externally to SQLx.

The following showcases how to implement Decode to be generic over Database. The implementation can be marginally simpler if you remove the DB type parameter and explicitly use the concrete ValueRef and TypeInfo types.

struct MyType;

// DB is the database driver
// `'r` is the lifetime of the `Row` being decoded
impl<'r, DB: Database> Decode<'r, DB> for MyType
where
    // we want to delegate some of the work to string decoding so let's make sure strings
    // are supported by the database
    &'r str: Decode<'r, DB>
{
    fn decode(
        value: <DB as Database>::ValueRef<'r>,
    ) -> Result<MyType, Box<dyn Error + 'static + Send + Sync>> {
        // the interface of ValueRef is largely unstable at the moment
        // so this is not directly implementable

        // however, you can delegate to a type that matches the format of the type you want
        // to decode (such as a UTF-8 string)

        let value = <&str as Decode<DB>>::decode(value)?;

        // now you can parse this into your type (assuming there is a `FromStr`)

        Ok(value.parse()?)
    }
}

Required Methods§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<Self, Box<dyn Error + Sync + Send>>

Decode a new value of this type using a raw value from the database.

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§

§

impl Decode<'_, Sqlite> for Box<str>

§

fn decode( value: SqliteValueRef<'_>, ) -> Result<Box<str>, Box<dyn Error + Sync + Send>>

§

impl Decode<'_, Sqlite> for Box<[u8]>

§

fn decode( value: SqliteValueRef<'_>, ) -> Result<Box<[u8]>, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for &'r str

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<&'r str, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for &'r [u8]

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<&'r [u8], Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for Cow<'r, str>

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<Cow<'r, str>, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for bool

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<bool, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for f32

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<f32, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for f64

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<f64, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for i8

§

fn decode(value: SqliteValueRef<'r>) -> Result<i8, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for i16

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<i16, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for i32

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<i32, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for i64

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<i64, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for u8

§

fn decode(value: SqliteValueRef<'r>) -> Result<u8, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for u16

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<u16, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for u32

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<u32, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for u64

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<u64, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for String

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<String, Box<dyn Error + Sync + Send>>

§

impl<'r> Decode<'r, Sqlite> for Vec<u8>

§

fn decode( value: SqliteValueRef<'r>, ) -> Result<Vec<u8>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<i8>
where DB: Database, i8: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<i8>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<i16>
where DB: Database, i16: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<i16>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<i32>
where DB: Database, i32: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<i32>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<i64>
where DB: Database, i64: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<i64>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<u8>
where DB: Database, u8: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<u8>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<u16>
where DB: Database, u16: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<u16>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<u32>
where DB: Database, u32: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<u32>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB> Decode<'r, DB> for NonZero<u64>
where DB: Database, u64: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<NonZero<u64>, Box<dyn Error + Sync + Send>>

§

impl<'r, DB, T> Decode<'r, DB> for Option<T>
where DB: Database, T: Decode<'r, DB>,

§

fn decode( value: <DB as Database>::ValueRef<'r>, ) -> Result<Option<T>, Box<dyn Error + Sync + Send>>

Implementors§

§

impl Decode<'_, Sqlite> for Uuid

§

impl Decode<'_, Sqlite> for Hyphenated

§

impl Decode<'_, Sqlite> for Simple

§

impl<'r> Decode<'r, Sqlite> for NaiveDate

§

impl<'r> Decode<'r, Sqlite> for NaiveDateTime

§

impl<'r> Decode<'r, Sqlite> for NaiveTime

§

impl<'r> Decode<'r, Sqlite> for Date

§

impl<'r> Decode<'r, Sqlite> for PrimitiveDateTime

§

impl<'r> Decode<'r, Sqlite> for OffsetDateTime

§

impl<'r> Decode<'r, Sqlite> for Time

§

impl<'r> Decode<'r, Sqlite> for DateTime<FixedOffset>

§

impl<'r> Decode<'r, Sqlite> for DateTime<Local>

§

impl<'r> Decode<'r, Sqlite> for DateTime<Utc>

§

impl<'r, DB> Decode<'r, DB> for &'r RawValue
where Json<&'r RawValue>: Decode<'r, DB>, DB: Database,

§

impl<'r, DB> Decode<'r, DB> for Value
where Json<Value>: Decode<'r, DB>, DB: Database,

§

impl<'r, T> Decode<'r, Sqlite> for Json<T>
where T: 'r + Deserialize<'r>,

§

impl<'r, T> Decode<'r, Sqlite> for Text<T>
where T: FromStr, Box<dyn Error + Sync + Send>: From<<T as FromStr>::Err>,