async-ecs 0.1.0

Async Parallel Entity Component System for Rust
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

use crate::entity::Entity;

#[derive(Error, Debug)]
pub enum Error {
    #[error("Entity is not alive: {0}!")]
    EntityIsNotAlive(Entity),
}