aboutsummaryrefslogtreecommitdiff
path: root/src/message/signalproxy/translation/mod.rs
blob: bbb8b3f8d895f51e78393beb6aedff8b394491a9 (plain)
1
2
3
4
5
6
pub trait Network {
    type Item;

    fn to_network(&self) -> Self::Item;
    fn from_network(input: Self::Item) -> Self;
}