[][src]Struct refinery_migrations::Config

pub struct Config {
    pub main: Main,
}

Fields

main: Main

Methods

impl Config[src]

pub fn new(db_type: ConfigDbType) -> Config[src]

pub fn from_file_location<T: AsRef<Path>>(location: T) -> Result<Config, Error>[src]

create a new Config instance from a config file located on the file system

pub fn get_db_type(&self) -> ConfigDbType[src]

pub fn set_db_user(self, db_user: &str) -> Config[src]

pub fn set_db_pass(self, db_pass: &str) -> Config[src]

pub fn set_db_path(self, db_path: &str) -> Config[src]

pub fn set_db_host(self, db_host: &str) -> Config[src]

pub fn set_db_port(self, db_port: &str) -> Config[src]

pub fn set_db_name(self, db_name: &str) -> Config[src]

Trait Implementations

impl Debug for Config[src]

impl<'de> Deserialize<'de> for Config[src]

impl Serialize for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

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.