pub trait InterestHandler:
Send
+ Sync
+ Debug {
// Required methods
fn push_interest(&mut self, interest: InterestType);
fn pop_interest(&mut self, interest: InterestType) -> bool;
fn has_interest(&self, interest: InterestType) -> bool;
}Required Methods§
fn push_interest(&mut self, interest: InterestType)
fn pop_interest(&mut self, interest: InterestType) -> bool
fn has_interest(&self, interest: InterestType) -> bool
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".