1
2
3
4
5
pub trait Structure {
    fn relation() -> &'static str;
    fn primary_key() -> &'static [&'static str];
    fn definition() -> &'static [&'static str];
}