hecs-schedule 0.3.14

Provides shedulable systems and parallel execution for hecs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module provides traits for borrowing values and the relationship
//! between references and owned values, as well as ref cells.
//!
//! Not all items are re-exported in the crate because not all are necessary for
//! basic usage. The traits can still be accessed and allows for custom
//! accessors for systems.
mod cell_borrow;
mod component_borrow;
#[macro_use]
mod into_borrow;
mod maybe_borrow;

pub use cell_borrow::*;
pub use component_borrow::*;
pub use into_borrow::*;
pub use maybe_borrow::*;