pub struct Ast {
pub select: Option<Select>,
pub order: Option<Order>,
pub offset: Option<usize>,
pub limit: Option<usize>,
pub filter: Vec<Filter>,
}
Fields§
§select: Option<Select>
§order: Option<Order>
§offset: Option<usize>
§limit: Option<usize>
§filter: Vec<Filter>
Implementations§
Trait Implementations§
impl StructuralPartialEq for Ast
Auto Trait Implementations§
impl Freeze for Ast
impl RefUnwindSafe for Ast
impl Send for Ast
impl Sync for Ast
impl Unpin for Ast
impl UnwindSafe for Ast
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