pub type StreamCallback<T> = Box<dyn Fn(T) + Send + Sync + 'static>;
Callback type for stream subscriptions
pub struct StreamCallback<T>(/* private fields */);