1use core::panic::{RefUnwindSafe, UnwindSafe}; 2 3pub trait SubscriberCallback<Event>: Fn(Event) + Send + UnwindSafe + RefUnwindSafe 4where 5 Event: crate::SubscriberEvent, 6{ 7}