pub trait ToTopicPath {
// Required method
fn to_topic_path(&self) -> Result<TopicPath>;
// Provided method
fn to_topic_name(&self) -> Result<TopicPath> { ... }
}
pub trait ToTopicPath {
// Required method
fn to_topic_path(&self) -> Result<TopicPath>;
// Provided method
fn to_topic_name(&self) -> Result<TopicPath> { ... }
}