pub struct PlannedQuery<E: EntityKind> { /* private fields */ }Expand description
PlannedQuery
Typed planned-query shell over one generic-free planner contract. This preserves caller-side entity inference while keeping the stored plan payload and explain/hash logic structural.
Implementations§
Source§impl<E: EntityKind> PlannedQuery<E>
impl<E: EntityKind> PlannedQuery<E>
pub fn explain(&self) -> ExplainPlan
Sourcepub fn plan_hash_hex(&self) -> String
pub fn plan_hash_hex(&self) -> String
Return the stable plan hash for this planned query.
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for PlannedQuery<E>
impl<E> RefUnwindSafe for PlannedQuery<E>where
E: RefUnwindSafe,
impl<E> Send for PlannedQuery<E>where
E: Send,
impl<E> Sync for PlannedQuery<E>where
E: Sync,
impl<E> Unpin for PlannedQuery<E>where
E: Unpin,
impl<E> UnsafeUnpin for PlannedQuery<E>
impl<E> UnwindSafe for PlannedQuery<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