mssql-tds 0.1.0

Rust implementation of the TDS (Tabular Data Stream) protocol for SQL Server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! TDS token types, parsers, and related data structures.

pub(crate) mod fed_auth_info;
pub(crate) mod login_ack;
pub(crate) mod parsers;
/// Return value status and other token item types.
pub mod tokenitems;
/// Token type definitions, collation, and environment change types.
pub mod tokens;