pub trait Protocol<'a> {
    type Message: 'a;

    fn name() -> &'static str;
}
Expand description

Represents the basic elements of a protocol

Required Associated Types

Type of message returned when parsing

Required Methods

Protocol name string

Implementors