usesuper::SubscriptionName;/// Implement this trait for a type that can be used as a subscription topic. That means
/// that the type can be used to create a subscription to a stream of events using the
/// `Subscription` type.
pubtraitSubscriptionTopic{/// Get the name of the stream that the subscription will read from.
fnstream_name(&self)-> SubscriptionName;}