pub trait Subscription {
type Data: DeserializeOwned + Serialize + Send + 'static;
// Required method
fn channel_string(&self) -> String;
}pub trait Subscription {
type Data: DeserializeOwned + Serialize + Send + 'static;
// Required method
fn channel_string(&self) -> String;
}