1 2 3 4 5 6 7 8 9 10 11
#![feature(inherent_associated_types)] #![allow(incomplete_features)] use sqlxo_macros::Query; #[derive(Debug, Clone, Query)] #[sqlxo(table_name = "a")] pub struct T { pub name: String, } fn main() {}