pub trait Migration<S, D>where
    S: Clone + Serialize + DeserializeOwned,
    D: Clone + From<S> + Serialize + DeserializeOwned,
{ fn execute_migration(
        client: &'static Client,
        db_name: String,
        host: String
    ) -> Box<dyn Future<Output = Result<bool, Box<dyn Error>>>>; }

Required Methods

Implementors