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
13
use serde::Deserialize;

// #[derive(Debug, Deserialize)]
// #[serde(rename_all = "camelCase")]
// pub(crate) struct CloseSessionData {}

#[derive(Debug, Deserialize)]
#[serde(untagged)]
#[allow(dead_code)]
pub(crate) enum CloseSessionResponse {
    Success(super::GenericResponse<()>),
    Failure(super::ErrorResponse),
}