pub trait ConnectOptions:
'static
+ Send
+ Sync
+ FromStr<Err = Error>
+ Debug
+ Clone {
type Connection: Connection + ?Sized;
// Required methods
fn from_url(url: &Url) -> Result<Self, Error>;
fn connect(
&self,
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Error>> + Send + '_>>
where Self::Connection: Sized;
fn log_statements(self, level: LevelFilter) -> Self;
fn log_slow_statements(self, level: LevelFilter, duration: Duration) -> Self;
// Provided method
fn disable_statement_logging(self) -> Self { ... }
}
Available on crate feature
sqlx
only.Required Associated Types§
type Connection: Connection + ?Sized
Required Methods§
Sourcefn connect(
&self,
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Error>> + Send + '_>>where
Self::Connection: Sized,
fn connect(
&self,
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Error>> + Send + '_>>where
Self::Connection: Sized,
Establish a new database connection with the options specified by self
.
Sourcefn log_statements(self, level: LevelFilter) -> Self
fn log_statements(self, level: LevelFilter) -> Self
Log executed statements with the specified level
Sourcefn log_slow_statements(self, level: LevelFilter, duration: Duration) -> Self
fn log_slow_statements(self, level: LevelFilter, duration: Duration) -> Self
Log executed statements with a duration above the specified duration
at the specified level
.
Provided Methods§
Sourcefn disable_statement_logging(self) -> Self
fn disable_statement_logging(self) -> Self
Entirely disables statement logging (both slow and regular).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.