pub trait DictionaryClientHandler<___T: Transport> {
// Provided method
fn on_unknown_interaction(
&mut self,
sender: &ClientSender<___T, Dictionary>,
ordinal: u64,
) { ... }
}
Expand description
A client handler for the Dictionary protocol.
See Dictionary
for more details.