kosame_sql 0.3.0

Macro-based Rust ORM focused on developer ergonomics
Documentation
1
2
3
4
5
6
use std::fmt::Write;

pub trait Dialect {
    fn fmt_ident(formatter: &mut impl Write, name: &str) -> std::fmt::Result;
    fn fmt_bind_param(formatter: &mut impl Write, name: &str, ordinal: u32) -> std::fmt::Result;
}