Trait BasicQuery

Source
pub trait BasicQuery {
    // Required method
    fn query_any<'a, Q, C>(&mut self) -> bool
       where Q: QueryData<Item<'a> = C>;
}

Required Methods§

Source

fn query_any<'a, Q, C>(&mut self) -> bool
where Q: QueryData<Item<'a> = C>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§