sqlx/sqlx-core/src/mssql/options.rs
Ryan Leckey 05eb07e7d4 feat(mssql): setup the initial boilerplate for MSSQL
Co-authored-by: Daniel Akhterov <akhterovd@gmail.com>
2020-06-07 02:00:12 -07:00

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!()
}
}