pub trait Options {
    fn module(&self) -> Option<&str>;
    fn table_name(&self) -> &str;
    fn order_options(&self) -> Option<OrderOptions>;
    fn page_options(&self) -> Option<PageOptions>;
}
Expand description

Options Trait represents an EdgeDB select query options :

  • order options
  • pagination options

Required Methods§

returns the edgedb module targeted by the query

returns the edgedb table targeted by the query

returns the query’s order options

returns the query’s pagination options

Implementors§