elephantry 5.1.1

Object model manager for PostgreSQL
Documentation
1
2
3
4
5
6
7
/**
 * Trait to reflect relation structure.
 */
pub trait Structure: crate::Projectable {
    /** Get the list of column contitutes the primary key. */
    fn primary_key() -> &'static [&'static str];
}