pub trait RequestCounter {
    fn next(&mut self) -> u16;
}
Expand description

Structure for counting requests to generate the packet ID’s for requests

Required Methods

Called to obtain the next packet ID

Implementors