pub trait InterestHandler: Send + Sync {
    // Required method
    fn interest(&mut self, interest: InterestType);
}

Required Methods§

source

fn interest(&mut self, interest: InterestType)

Implementors§