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 strmodule: Option<&'a str>order_options: Option<OrderOptions>page_options: Option<PageOptions>Trait Implementations
sourceimpl<'a> Options for SelectOptions<'a>
impl<'a> Options for SelectOptions<'a>
sourcefn table_name(&self) -> &str
fn table_name(&self) -> &str
returns the edgedb table targeted by the query
sourcefn order_options(&self) -> Option<OrderOptions>
fn order_options(&self) -> Option<OrderOptions>
returns the query’s order options
sourcefn page_options(&self) -> Option<PageOptions>
fn page_options(&self) -> Option<PageOptions>
returns the query’s pagination options
Auto Trait Implementations
impl<'a> RefUnwindSafe for SelectOptions<'a>
impl<'a> Send for SelectOptions<'a>
impl<'a> Sync for SelectOptions<'a>
impl<'a> Unpin for SelectOptions<'a>
impl<'a> UnwindSafe for SelectOptions<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more