pub trait DelegateDispatchBase<I: Proxy> {
    type UserData: Send + Sync + 'static;
}
Expand description

The base trait used to define a delegate type to handle some type of proxy.

Associated Types

The type of user data the delegate holds

Implementors