[][src]Trait sqlx_core::value::HasRawValue

pub trait HasRawValue<'c> {
    type Database: Database;
    type RawValue: RawValue<'c, Database = Self::Database>;
}

Associate Database with a RawValue of a generic lifetime.


The upcoming Rust feature, Generic Associated Types, should obviate the need for this trait.

Associated Types

type Database: Database

type RawValue: RawValue<'c, Database = Self::Database>

The Rust type used to hold a not-yet-decoded value that has just been received from the database.

Loading content...

Implementors

Loading content...