Skip to main content

GENERATED

Constant GENERATED 

Source
pub const GENERATED: ColumnMarker;
Expand description

Marks this column as a generated column.

ยงExamples

#[column(generated(stored, "length(name)"))]
stored_name_len: i32,

#[column(generated(virtual, "length(name)"))]
virtual_name_len: i32,

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