1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub mod exchange;
pub(crate) mod information;
pub mod mortal;
pub(crate) mod typed;

use crate::reception::mortal::Mortal;
use std::fmt::Debug;
use std::hash::Hash;

pub trait Reception: Clone + Debug + Eq + Hash + PartialEq + Mortal {}