Trait AdminRead

Source
pub trait AdminRead {
    // Required method
    fn read_packet(&mut self) -> Result<Packet>;
}
Expand description

Provides the function AdminRead::read_packet. It is implemented for any type implementing std::io::Read via PacketRead.

Required Methods§

Source

fn read_packet(&mut self) -> Result<Packet>

Implementors§