mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-04 08:15:39 +00:00
15 lines
270 B
Rust
15 lines
270 B
Rust
use std::str::FromStr;
|
|
|
|
use crate::error::BoxDynError;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct MsSqlConnectOptions {}
|
|
|
|
impl FromStr for MsSqlConnectOptions {
|
|
type Err = BoxDynError;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
unimplemented!()
|
|
}
|
|
}
|