mssql-client 0.20.1

High-level async SQL Server client with type-state connection management
Documentation
1
2
3
4
5
6
7
use mssql_derive::FromRow;

/// FromRow requires named fields, not tuple structs.
#[derive(FromRow)]
struct TupleStruct(i32, String);

fn main() {}