pub struct Executor<'a, S: GraphStorage> { /* private fields */ }Implementations§
Source§impl<'a, S: GraphStorage> Executor<'a, S>
impl<'a, S: GraphStorage> Executor<'a, S>
pub fn new(ctx: ExecutionContext<'a, S>) -> Self
pub fn with_deadline( ctx: ExecutionContext<'a, S>, deadline: Option<Instant>, ) -> Self
Source§impl<'a, S: GraphStorage> Executor<'a, S>
impl<'a, S: GraphStorage> Executor<'a, S>
pub fn execute( &self, plan: &PhysicalPlan, options: Option<ExecuteOptions>, ) -> ExecResult<QueryResult>
pub fn execute_compiled( &self, compiled: &CompiledQuery, options: Option<ExecuteOptions>, ) -> ExecResult<QueryResult>
pub fn execute_compiled_rows( &self, compiled: &CompiledQuery, ) -> ExecResult<Vec<Row>>
pub fn execute_rows(&self, plan: &PhysicalPlan) -> ExecResult<Vec<Row>>
Auto Trait Implementations§
impl<'a, S> Freeze for Executor<'a, S>
impl<'a, S> RefUnwindSafe for Executor<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for Executor<'a, S>where
S: Sync,
impl<'a, S> Sync for Executor<'a, S>where
S: Sync,
impl<'a, S> Unpin for Executor<'a, S>
impl<'a, S> UnsafeUnpin for Executor<'a, S>
impl<'a, S> UnwindSafe for Executor<'a, S>where
S: RefUnwindSafe,
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