Trait mysql_proxy::PacketHandler [] [src]

pub trait PacketHandler {
    fn handle_request(&mut self, p: &Packet) -> Action;
    fn handle_response(&mut self, p: &Packet) -> Action;
}

Packet handlers need to implement this trait

Required Methods

Implementors