pub const ANY: TypeMarker;Expand description
Specifies an ANY column type (STRICT tables only).
ยงExample
#[SQLiteTable(strict)]
struct Data {
#[column(any)]
value: serde_json::Value,
}ANY allows any type of data. Only valid in STRICT tables.