pub struct CompiledQuery<E: EntityKind> { /* private fields */ }Expand description
CompiledQuery
Query-owned compiled handoff produced by Query::plan().
This type intentionally carries only logical/access query semantics.
Executor runtime shape is derived explicitly at the executor boundary.
Implementations§
Source§impl<E: EntityKind> CompiledQuery<E>
impl<E: EntityKind> CompiledQuery<E>
Trait Implementations§
Source§impl<E: Clone + EntityKind> Clone for CompiledQuery<E>
impl<E: Clone + EntityKind> Clone for CompiledQuery<E>
Source§fn clone(&self) -> CompiledQuery<E>
fn clone(&self) -> CompiledQuery<E>
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 moreAuto Trait Implementations§
impl<E> Freeze for CompiledQuery<E>
impl<E> RefUnwindSafe for CompiledQuery<E>
impl<E> Send for CompiledQuery<E>
impl<E> Sync for CompiledQuery<E>
impl<E> Unpin for CompiledQuery<E>where
E: Unpin,
impl<E> UnsafeUnpin for CompiledQuery<E>
impl<E> UnwindSafe for CompiledQuery<E>
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