musq 0.0.3

musq is a SQLite3 driver for Rust focusing on performance, correctness, and flexibility.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::fmt::Debug;

use crate::sqlite::SqliteDataType;

/// Metadata about a result column.
#[derive(Debug, Clone)]
pub struct Column {
    /// Declared or inferred SQLite type information.
    pub(crate) type_info: SqliteDataType,
}