nitinol-resolver 0.1.0

Library for Nitinol to abstract how to process Events to Entity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::mapping::Mapper;
use nitinol_process::{Process, Receptor};

/// Trait for resolving extension handlers for entity in process.
/// 
/// See [`ResolveMapping`](crate::mapping::ResolveMapping)
pub trait WithResolveMapping: 'static + Sync + Send + Sized
where
    Self: Process
{
    fn mapping(mapper: &mut Mapper<Self>, myself: Receptor<Self>);
}