pub trait ConnectorHost: Sync + Send + 'static {
    // Required method
    fn print<'a>(&'a self, text: &'a str) -> BoxFuture<'a, ConnectorResult<()>>;
}
Expand description

An abstract host for a migration connector. It exposes IO that is not directly performed by the connectors.

Required Methods§

source

fn print<'a>(&'a self, text: &'a str) -> BoxFuture<'a, ConnectorResult<()>>

Print to the console.

Implementors§