pub struct MutableExecutor<'a, S: GraphStorageMut> { /* private fields */ }Implementations§
Source§impl<'a, S: GraphStorageMut> MutableExecutor<'a, S>
impl<'a, S: GraphStorageMut> MutableExecutor<'a, S>
pub fn new(ctx: MutableExecutionContext<'a, S>) -> Self
pub fn with_deadline( ctx: MutableExecutionContext<'a, S>, deadline: Option<Instant>, ) -> Self
pub fn execute( &mut self, plan: &PhysicalPlan, options: Option<ExecuteOptions>, ) -> ExecResult<QueryResult>
pub fn execute_rows(&mut self, plan: &PhysicalPlan) -> ExecResult<Vec<Row>>
Sourcepub fn execute_compiled(
&mut self,
compiled: &CompiledQuery,
options: Option<ExecuteOptions>,
) -> ExecResult<QueryResult>
pub fn execute_compiled( &mut self, compiled: &CompiledQuery, options: Option<ExecuteOptions>, ) -> ExecResult<QueryResult>
Execute a compiled query that may include UNION branches.
pub fn execute_compiled_rows( &mut self, compiled: &CompiledQuery, ) -> ExecResult<Vec<Row>>
Auto Trait Implementations§
impl<'a, S> Freeze for MutableExecutor<'a, S>
impl<'a, S> RefUnwindSafe for MutableExecutor<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for MutableExecutor<'a, S>where
S: Send,
impl<'a, S> Sync for MutableExecutor<'a, S>where
S: Sync,
impl<'a, S> Unpin for MutableExecutor<'a, S>
impl<'a, S> UnsafeUnpin for MutableExecutor<'a, S>
impl<'a, S> !UnwindSafe for MutableExecutor<'a, S>
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