Docs.rs
rs-ecs-0.3.4
rs-ecs 0.3.4
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
adamreichold
Dependencies
Versions
100%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
Trait QuerySpec
Implementations on Foreign Types
&'a C
&'a mut C
(A, B, C, D, E, F, G, H, I, J)
(B, C, D, E, F, G, H, I, J)
(C, D, E, F, G, H, I, J)
(D, E, F, G, H, I, J)
(E, F, G, H, I, J)
(F, G, H, I, J)
(G, H, I, J)
(H, I, J)
(I, J)
(J,)
Option<S>
Implementors
Other items in
rs_ecs
?
Trait
rs_ecs
::
QuerySpec
[
−
]
[src]
pub trait QuerySpec { }
Expand description
Type level specification of a query for a certain set of components.
Implementations on Foreign Types
[src]
impl<'a, C>
QuerySpec
for
&'a
C
where
C: 'static,
type
Fetch
= FetchRead<C>
[src]
impl<'a, C>
QuerySpec
for
&'a mut
C
where
C: 'static,
type
Fetch
= FetchWrite<C>
[src]
impl<S>
QuerySpec
for
Option
<S>
where
S:
QuerySpec
,
type
Fetch
= TryFetch<S::
Fetch
>
[src]
impl<J>
QuerySpec
for
(
J
,)
where
J:
QuerySpec
,
type
Fetch
=
(
J::
Fetch
,)
[src]
impl<I, J>
QuerySpec
for
(
I, J
)
where
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
I::
Fetch
, J::
Fetch
)
[src]
impl<H, I, J>
QuerySpec
for
(
H, I, J
)
where
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<G, H, I, J>
QuerySpec
for
(
G, H, I, J
)
where
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<F, G, H, I, J>
QuerySpec
for
(
F, G, H, I, J
)
where
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<E, F, G, H, I, J>
QuerySpec
for
(
E, F, G, H, I, J
)
where
E:
QuerySpec
,
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
E::
Fetch
, F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<D, E, F, G, H, I, J>
QuerySpec
for
(
D, E, F, G, H, I, J
)
where
D:
QuerySpec
,
E:
QuerySpec
,
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
D::
Fetch
, E::
Fetch
, F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<C, D, E, F, G, H, I, J>
QuerySpec
for
(
C, D, E, F, G, H, I, J
)
where
C:
QuerySpec
,
D:
QuerySpec
,
E:
QuerySpec
,
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
C::
Fetch
, D::
Fetch
, E::
Fetch
, F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<B, C, D, E, F, G, H, I, J>
QuerySpec
for
(
B, C, D, E, F, G, H, I, J
)
where
B:
QuerySpec
,
C:
QuerySpec
,
D:
QuerySpec
,
E:
QuerySpec
,
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
B::
Fetch
, C::
Fetch
, D::
Fetch
, E::
Fetch
, F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
[src]
impl<A, B, C, D, E, F, G, H, I, J>
QuerySpec
for
(
A, B, C, D, E, F, G, H, I, J
)
where
A:
QuerySpec
,
B:
QuerySpec
,
C:
QuerySpec
,
D:
QuerySpec
,
E:
QuerySpec
,
F:
QuerySpec
,
G:
QuerySpec
,
H:
QuerySpec
,
I:
QuerySpec
,
J:
QuerySpec
,
type
Fetch
=
(
A::
Fetch
, B::
Fetch
, C::
Fetch
, D::
Fetch
, E::
Fetch
, F::
Fetch
, G::
Fetch
, H::
Fetch
, I::
Fetch
, J::
Fetch
)
Implementors
[src]
impl<S, C>
QuerySpec
for
With
<S, C>
where
S:
QuerySpec
,
C: 'static,
type
Fetch
= FetchWith<S::
Fetch
, C>
[src]
impl<S, C>
QuerySpec
for
Without
<S, C>
where
S:
QuerySpec
,
C: 'static,
type
Fetch
= FetchWithout<S::
Fetch
, C>