pub trait FormEntity: From<BTreeMap<Self::Columns, String>> + Into<BTreeMap<Self::Columns, String>> {
    type Columns: FormColumn + Copy + Ord;
}

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§