1use std::any::Any; 2use std::fmt::Debug; 3 4#[derive(Debug)] 5pub struct CallbackHandle { 6 pub rx: Box<dyn Any + Send>, 7}