Trait sqlx_core::connection::ConnectOptions[][src]

pub trait ConnectOptions: 'static + Send + Sync + FromStr<Err = Error> + Debug {
    type Connection: Connection + ?Sized;
    fn connect(&self) -> BoxFuture<'_, Result<Self::Connection, Error>>
    where
        Self::Connection: Sized
;
fn log_statements(&mut self, level: LevelFilter) -> &mut Self;
fn log_slow_statements(
        &mut self,
        level: LevelFilter,
        duration: Duration
    ) -> &mut Self; fn disable_statement_logging(&mut self) -> &mut Self { ... } }

Associated Types

Loading content...

Required methods

fn connect(&self) -> BoxFuture<'_, Result<Self::Connection, Error>> where
    Self::Connection: Sized
[src]

Establish a new database connection with the options specified by self.

fn log_statements(&mut self, level: LevelFilter) -> &mut Self[src]

Log executed statements with the specified level

fn log_slow_statements(
    &mut self,
    level: LevelFilter,
    duration: Duration
) -> &mut Self
[src]

Log executed statements with a duration above the specified duration at the specified level.

Loading content...

Provided methods

fn disable_statement_logging(&mut self) -> &mut Self[src]

Entirely disables statement logging (both slow and regular).

Loading content...

Implementors

impl ConnectOptions for AnyConnectOptions[src]

type Connection = AnyConnection

impl ConnectOptions for MssqlConnectOptions[src]

type Connection = MssqlConnection

impl ConnectOptions for MySqlConnectOptions[src]

type Connection = MySqlConnection

impl ConnectOptions for PgConnectOptions[src]

type Connection = PgConnection

impl ConnectOptions for SqliteConnectOptions[src]

type Connection = SqliteConnection

Loading content...