[][src]Struct c3p0_json::json::Queries

pub struct Queries {
    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_sql_query: String,
    pub delete_all_sql_query: String,
    pub delete_by_id_sql_query: String,
    pub save_sql_query: String,
    pub update_sql_query: String,
    pub create_table_sql_query: String,
    pub drop_table_sql_query: String,
    pub lock_table_sql_query: Option<String>,
}

Fields

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_sql_query: Stringdelete_all_sql_query: Stringdelete_by_id_sql_query: Stringsave_sql_query: Stringupdate_sql_query: Stringcreate_table_sql_query: Stringdrop_table_sql_query: Stringlock_table_sql_query: Option<String>

Trait Implementations

impl Clone for Queries[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Queries

impl Unpin for Queries

impl Sync for Queries

impl RefUnwindSafe for Queries

impl UnwindSafe for Queries

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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