pub trait UserClientImplExt: ObjectSubclass {
// Required method
fn parent_handle_event(
&self,
user_client: &Self::Type,
event_cntr: &EventCntr,
);
}Expand description
Trait which is automatically implemented by implementator of
UserClientImpl.
Required Methods§
fn parent_handle_event(&self, user_client: &Self::Type, event_cntr: &EventCntr)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.