pub struct ExecutablePlan<E: EntityKind> { /* private fields */ }Expand description
ExecutablePlan
Executor-ready plan bound to a specific entity type.
Implementations§
Source§impl<E: EntityKind> ExecutablePlan<E>
impl<E: EntityKind> ExecutablePlan<E>
Sourcepub fn explain(&self) -> ExplainPlan
pub fn explain(&self) -> ExplainPlan
Explain this plan without executing it.
Sourcepub fn fingerprint(&self) -> PlanFingerprint
pub fn fingerprint(&self) -> PlanFingerprint
Compute a stable fingerprint for this plan.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for ExecutablePlan<E>
impl<E> RefUnwindSafe for ExecutablePlan<E>where
E: RefUnwindSafe,
impl<E> Send for ExecutablePlan<E>where
E: Send,
impl<E> Sync for ExecutablePlan<E>where
E: Sync,
impl<E> Unpin for ExecutablePlan<E>where
E: Unpin,
impl<E> UnwindSafe for ExecutablePlan<E>where
E: UnwindSafe,
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