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.
pub trait AdminRead {
// Required method
fn read_packet(&mut self) -> Result<Packet>;
}
Provides the function AdminRead::read_packet
. It is implemented for any type implementing std::io::Read via PacketRead.