snowflakedb-rs 1.1.6

A lightweight, comprehensive and familiar database driver for the SnowflakeDB written natively in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{driver::query::Query, http::client::SnowflakeHttpClient};

pub(crate) mod base;
pub mod primitives;
pub mod protocols;
pub mod query;

pub trait Protocol: Clone {
    type Query<C>: Query<C>
    where
        C: SnowflakeHttpClient;
}