shred
v0.16.1
该库允许并行调度具有相互依赖性、共享和独占资源访问的系统。
extern crate shred ;
use shred :: { DispatcherBuilder , Read , Resource , ResourceId , System , SystemData , World , Write } ;
# [ derive ( Debug , Default ) ]
struct ResA ;
# [ derive ( Debug , Default ) ]
struct ResB ;
# [ derive ( SystemData ) ] // Provided with `shred-derive` feature
struct Data < ' a > {
a : Read < ' a , ResA > ,
b : Write < ' a , ResB > ,
}
struct EmptySystem ;
impl < ' a > System < ' a > for EmptySystem {
type SystemData = Data < ' a > ;
fn run ( & mut self , bundle : Data < ' a > ) {
println ! ( "{:?}" , &*bundle.a ) ;
println ! ( "{:?}" , &*bundle.b ) ;
}
}
fn main ( ) {
let mut world = World :: empty ( ) ;
let mut dispatcher = DispatcherBuilder :: new ( )
. with ( EmptySystem , "empty" , & [ ] )
. build ( ) ;
world . insert ( ResA ) ;
world . insert ( ResB ) ;
dispatcher . dispatch ( & mut world ) ;
}
请参阅基准以获得更大(且有用)的示例。
1.56.1 stable
非常欢迎贡献!如果您想要其他功能,只需创建一个问题。如果您愿意,也可以提供帮助;只需选择一个“需要帮助”的问题即可。如果您需要任何帮助,请随时询问!
假定所有贡献均已获得 MIT/Apache-2 的双重许可。
shred
是根据 MIT 许可证和 Apache 许可证(版本 2.0)的条款分发的。
请参阅许可证-APACHE 和许可证-MIT。