convex-typegen 0.1.0

Type safe bindings for ConvexDB in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This file is generated by convex-typegen. Do not modify directly.
// You can find more information about convex-typegen at https://github.com/JamalLyons/convex-typegen

#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

use serde::{Serialize, Deserialize};

#[derive(Debug, Clone)]
pub struct MessagesTable {
    pub author: String,
    pub body: String,
    pub timestamp: f64,
}