blob: a24d7e290af911caff7012af6aa053f3ef62d5c8 (
plain)
1
2
3
4
5
6
7
8
|
/// Represents the basic elements of a protocol
pub trait Protocol<'a> {
/// Type of message returned when parsing
type Message: 'a;
/// Protocol name string
fn name() -> &'static str;
}
|