[][src]Struct c3p0_migrate::C3p0MigrateBuilder

pub struct C3p0MigrateBuilder<C3P0: C3p0Pool> { /* fields omitted */ }

Methods

impl<C3P0: C3p0Pool> C3p0MigrateBuilder<C3P0>[src]

pub fn new(c3p0: C3P0) -> Self[src]

pub fn with_schema_name<T: Into<Option<String>>>(
    self,
    schema_name: T
) -> C3p0MigrateBuilder<C3P0>
[src]

pub fn with_table_name<T: Into<String>>(
    self,
    table_name: T
) -> C3p0MigrateBuilder<C3P0>
[src]

pub fn with_migrations<M: Into<Migrations>>(
    self,
    migrations: M
) -> C3p0MigrateBuilder<C3P0>
[src]

pub fn build(self) -> C3p0Migrate<C3P0>[src]

Trait Implementations

impl<C3P0: Clone + C3p0Pool> Clone for C3p0MigrateBuilder<C3P0>[src]

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

Performs copy-assignment from source. Read more

impl<C3P0: Debug + C3p0Pool> Debug for C3p0MigrateBuilder<C3P0>[src]

Auto Trait Implementations

impl<C3P0> Unpin for C3p0MigrateBuilder<C3P0> where
    C3P0: Unpin

impl<C3P0> Send for C3p0MigrateBuilder<C3P0> where
    C3P0: Send

impl<C3P0> Sync for C3p0MigrateBuilder<C3P0> where
    C3P0: Sync

impl<C3P0> RefUnwindSafe for C3p0MigrateBuilder<C3P0> where
    C3P0: RefUnwindSafe

impl<C3P0> UnwindSafe for C3p0MigrateBuilder<C3P0> where
    C3P0: UnwindSafe

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]

impl<T> Same<T> for T

type Output = T

Should always be Self