Enum mysql_proxy::Action
[−]
[src]
pub enum Action { Forward, Mutate(Packet), Respond(Vec<Packet>), }
Handlers return a variant of this enum to indicate how the proxy should handle the packet.
Variants
Forward
forward the packet unmodified
Mutate(Packet)
forward a mutated packet
Respond(Vec<Packet>)
respond to the packet without forwarding