pub trait BinMonitorExt: IsA<BinMonitor> + 'static {
// Provided methods
fn scenario(&self) -> Option<Scenario> { ... }
fn is_handles_states(&self) -> bool { ... }
fn connect_handles_states_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
fn is_handles_states(&self) -> bool
fn connect_handles_states_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
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.