[][src]Trait sqlx::value::HasRawValue

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

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>

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

Loading content...

Implementors

impl<'a> HasRawValue<'a> for Postgres[src]

impl<'c> HasRawValue<'c> for MySql[src]

Loading content...