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