pub struct SelectOptions {
pub order_options: Option<OrderOptions>,
pub page_options: Option<PageOptions>,
}
Expand description
Select Options struct
Fields§
§order_options: Option<OrderOptions>
§page_options: Option<PageOptions>
Trait Implementations§
Source§impl Clone for SelectOptions
impl Clone for SelectOptions
Source§fn clone(&self) -> SelectOptions
fn clone(&self) -> SelectOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SelectOptions
impl Debug for SelectOptions
Source§impl Options for SelectOptions
impl Options for SelectOptions
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
Auto Trait Implementations§
impl Freeze for SelectOptions
impl RefUnwindSafe for SelectOptions
impl Send for SelectOptions
impl Sync for SelectOptions
impl Unpin for SelectOptions
impl UnwindSafe for SelectOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more