pub struct DynamicQuery(/* private fields */);
Expand description
A dynamic query; the dynamic equivalent of the Query
trait. Used with
World::dynamic_query
and World::dynamic_query_one
.
Implementations§
Trait Implementations§
Source§impl Clone for DynamicQuery
impl Clone for DynamicQuery
Source§fn clone(&self) -> DynamicQuery
fn clone(&self) -> DynamicQuery
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 Freeze for DynamicQuery
impl !RefUnwindSafe for DynamicQuery
impl Send for DynamicQuery
impl Sync for DynamicQuery
impl Unpin for DynamicQuery
impl !UnwindSafe for DynamicQuery
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