ANY

Constant ANY 

Source
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.

See: https://sqlite.org/stricttables.html