[][src]Trait sqlx::ConnectOptions

pub trait ConnectOptions: 'static + Send + Sync + Debug + FromStr<Err = Error> {
    type Connection: Connection + ?Sized;
    fn connect(
        &self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Error>> + Send, Global>>
    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; }

Associated Types

Loading content...

Required methods

fn connect(
    &self
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Error>> + Send, Global>> where
    Self::Connection: Sized

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

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

Log executed statements with the specified level

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

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

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...