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 the packet unmodified

forward a mutated packet

respond to the packet without forwarding