1 2 3 4 5 6 7 8 9 10
//! `#[table(strict = ...)]` with a non-literal value must fail. use toolu_orm_macros::table; #[table(name = "widgets", strict = maybe)] pub struct Widget { pub id: String, } fn main() {}