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

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