Struct c3p0::C3p0JsonBuilder[][src]

pub struct C3p0JsonBuilder<C3P0> {
    pub id_field_name: String,
    pub version_field_name: String,
    pub data_field_name: String,
    pub table_name: String,
    pub schema_name: Option<String>,
    // some fields omitted
}

Fields

id_field_name: Stringversion_field_name: Stringdata_field_name: Stringtable_name: Stringschema_name: Option<String>

Implementations

impl<C3P0> C3p0JsonBuilder<C3P0>[src]

pub fn new<T>(table_name: T) -> C3p0JsonBuilder<C3P0> where
    T: Into<String>, 
[src]

pub fn with_id_field_name<T>(self, id_field_name: T) -> C3p0JsonBuilder<C3P0> where
    T: Into<String>, 
[src]

pub fn with_version_field_name<T>(
    self,
    version_field_name: T
) -> C3p0JsonBuilder<C3P0> where
    T: Into<String>, 
[src]

pub fn with_data_field_name<T>(
    self,
    data_field_name: T
) -> C3p0JsonBuilder<C3P0> where
    T: Into<String>, 
[src]

pub fn with_schema_name<O>(self, schema_name: O) -> C3p0JsonBuilder<C3P0> where
    O: Into<OptString>, 
[src]

Trait Implementations

impl<C3P0> Clone for C3p0JsonBuilder<C3P0> where
    C3P0: Clone
[src]

Auto Trait Implementations

impl<C3P0> RefUnwindSafe for C3p0JsonBuilder<C3P0> where
    C3P0: RefUnwindSafe
[src]

impl<C3P0> Send for C3p0JsonBuilder<C3P0> where
    C3P0: Send
[src]

impl<C3P0> Sync for C3p0JsonBuilder<C3P0> where
    C3P0: Sync
[src]

impl<C3P0> Unpin for C3p0JsonBuilder<C3P0> where
    C3P0: Unpin
[src]

impl<C3P0> UnwindSafe for C3p0JsonBuilder<C3P0> where
    C3P0: UnwindSafe
[src]

Blanket Implementations

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

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

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

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.