InOut

Type Alias InOut 

Source
pub type InOut<I, O> = (I, O);
Expand description

Type alias for incoming/outgoing message types.

Trait Implementations§

Source§

impl<I: Type, O: Type> Types for InOut<I, O>

Source§

type Input = I

Input type.
Source§

type Output = O

Output type.
Source§

fn register(registry: &mut Registry) -> TypesRepr

Register input/output types in registry.