pub trait InboxDrain:
Send
+ Sync
+ 'static {
// Required method
fn drain(
&self,
host: &mut dyn InboxDrainHost,
window: Option<AppWindowId>,
) -> bool;
}pub trait InboxDrain:
Send
+ Sync
+ 'static {
// Required method
fn drain(
&self,
host: &mut dyn InboxDrainHost,
window: Option<AppWindowId>,
) -> bool;
}