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