Struct edgedb_query::queries::select::SelectOptions
source · pub struct SelectOptions<'a> {
pub table_name: &'a str,
pub module: Option<&'a str>,
pub order_options: Option<OrderOptions>,
pub page_options: Option<PageOptions>,
}Expand description
Select Options struct
Fields§
§table_name: &'a str§module: Option<&'a str>§order_options: Option<OrderOptions>§page_options: Option<PageOptions>Trait Implementations§
source§impl<'a> Options for SelectOptions<'a>
impl<'a> Options for SelectOptions<'a>
source§fn table_name(&self) -> &str
fn table_name(&self) -> &str
returns the edgedb table targeted by the query
source§fn order_options(&self) -> Option<OrderOptions>
fn order_options(&self) -> Option<OrderOptions>
returns the query’s order options
source§fn page_options(&self) -> Option<PageOptions>
fn page_options(&self) -> Option<PageOptions>
returns the query’s pagination options