roomrs 0.2.2

Room-style local SQLite persistence library for Rust
Documentation
1
2
3
4
5
6
7
// [명세 §5.1] #[entity]는 named 필드 구조체 전용 — 튜플 구조체 = 컴파일 에러
use roomrs::entity;

#[entity(table = "tuples")]
struct Tup(i64, String);

fn main() {}