pub enum AutoCountPath {
SingleCached,
PipelineOneShot,
PipelineCached,
PoolParallel,
}Expand description
Chosen execution path for auto count planning.
Variants§
SingleCached
Single command path using cached prepared execution.
PipelineOneShot
Pipeline path that parses each query in-batch.
PipelineCached
Pipeline path that reuses cached prepared templates.
PoolParallel
Parallel pool path using multiple connections.
Trait Implementations§
Source§impl Clone for AutoCountPath
impl Clone for AutoCountPath
Source§fn clone(&self) -> AutoCountPath
fn clone(&self) -> AutoCountPath
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 AutoCountPath
impl Debug for AutoCountPath
Source§impl PartialEq for AutoCountPath
impl PartialEq for AutoCountPath
impl Copy for AutoCountPath
impl Eq for AutoCountPath
impl StructuralPartialEq for AutoCountPath
Auto Trait Implementations§
impl Freeze for AutoCountPath
impl RefUnwindSafe for AutoCountPath
impl Send for AutoCountPath
impl Sync for AutoCountPath
impl Unpin for AutoCountPath
impl UnsafeUnpin for AutoCountPath
impl UnwindSafe for AutoCountPath
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