Docs.rs
async-ecs-0.1.0
async-ecs 0.1.0
Docs.rs crate page
Apache-2.0
/
MIT
Links
Repository
crates.io
Source
Owners
Bergmann89
Dependencies
asparit ^0.1
normal
async-ecs-derive ^0.1
normal
optional
crossbeam-queue ^0.3
normal
futures ^0.3
normal
hashbrown ^0.9
normal
hibitset ^0.6
normal
log ^0.4
normal
mopa ^0.2
normal
thiserror ^1.0
normal
tokio ^0.3
normal
Versions
59.84%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
async_
ecs
0.1.0
AnyStorage
Required Methods
drop
Trait Implementations
CastFrom<T>
Implementors
In async_
ecs::
world
async_ecs
::
world
Trait
AnyStorage
Copy item path
Source
pub trait AnyStorage { // Required method fn
drop
(&mut self, entities: &[
Entity
]); }
Required Methods
§
Source
fn
drop
(&mut self, entities: &[
Entity
])
Trait Implementations
§
Source
§
impl<T>
CastFrom
<T> for dyn
AnyStorage
where T:
AnyStorage
+ 'static,
Source
§
fn
cast
(t:
&T
) -> &Self
Casts an immutable
T
reference to a trait object.
Source
§
fn
cast_mut
(t:
&mut T
) -> &mut Self
Casts a mutable
T
reference to a trait object.
Implementors
§
Source
§
impl<T>
AnyStorage
for
MaskedStorage
<T>
where T:
Component
,