pub trait SizeRestrictedColumn: Column {
    const MAX_LENGTH: usize;
}
Expand description

Max length for columns of type Char/Varchar…

If a given column has a such constraint, this trait will be implemented and specify that length.

Required Associated Constants§

source

const MAX_LENGTH: usize

Max length of that column

Implementors§