pub struct SelectExecutor {
pub statement: SelectStatement,
pub access_path: SelectAccessPath,
/* private fields */
}Fields§
§statement: SelectStatement§access_path: SelectAccessPathImplementations§
Source§impl SelectExecutor
impl SelectExecutor
pub fn new(statement: SelectStatement, access_path: SelectAccessPath) -> Self
Trait Implementations§
Source§impl Clone for SelectExecutor
impl Clone for SelectExecutor
Source§fn clone(&self) -> SelectExecutor
fn clone(&self) -> SelectExecutor
Returns a duplicate 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 SelectExecutor
impl Debug for SelectExecutor
Source§impl QueryExecutor for SelectExecutor
impl QueryExecutor for SelectExecutor
fn execute(&mut self, ctx: &mut ExecutionContext<'_>) -> Result<QueryResult>
Auto Trait Implementations§
impl Freeze for SelectExecutor
impl RefUnwindSafe for SelectExecutor
impl Send for SelectExecutor
impl Sync for SelectExecutor
impl Unpin for SelectExecutor
impl UnsafeUnpin for SelectExecutor
impl UnwindSafe for SelectExecutor
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