[][src]Struct c3p0_pg::Config

pub struct Config<DATA> where
    DATA: Clone + Serialize + DeserializeOwned
{ pub codec: Codec<DATA>, pub id_field_name: String, pub version_field_name: String, pub data_field_name: String, pub table_name: String, pub schema_name: Option<String>, pub qualified_table_name: String, pub count_all_sql_query: String, pub exists_by_id_sql_query: String, pub find_all_sql_query: String, pub find_by_id_sql_query: String, pub delete_all_sql_query: String, pub delete_by_id_sql_query: String, pub save_sql_query: String, pub create_table_sql_query: String, pub drop_table_sql_query: String, }

Fields

codec: Codec<DATA>id_field_name: Stringversion_field_name: Stringdata_field_name: Stringtable_name: Stringschema_name: Option<String>qualified_table_name: Stringcount_all_sql_query: Stringexists_by_id_sql_query: Stringfind_all_sql_query: Stringfind_by_id_sql_query: Stringdelete_all_sql_query: Stringdelete_by_id_sql_query: Stringsave_sql_query: Stringcreate_table_sql_query: Stringdrop_table_sql_query: String

Trait Implementations

impl<DATA: Clone> Clone for Config<DATA> where
    DATA: Clone + Serialize + DeserializeOwned
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<DATA> Send for Config<DATA>

impl<DATA> Sync for Config<DATA>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self