/*!
# Network framework
The network module defines the interface to link actors to each other.
A single ouput with default parameters is added to an actor and connected to the input of another actor with:
```ignore
actor.add_output().build::<U>().into_input(&mut other)?;
```
and the correspong trail of traits methods is
(solid lines point to the type of the value that a method returns
and the dashed line points to the type of the input argument ):

The diagram of the trait bounds on generic parameters is given below:

*/
/// Interface for actors inputs
pub use ;
/// Interface for actors outputs
pub use ;
/// Definition of the payload between outputs and inputs
pub use ;
/// Interface for actors log outputs
pub use ;