[][src]Trait rbatis_core::value::HasRawValue

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

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> + Debug

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]

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

Loading content...