use std::fmt;
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct Topic(String);
impl Topic {
pub fn new(name: impl Into<String>) -> Self {
let name = name.into();
assert!(!name.is_empty(), "topic name must not be empty");
Self(name)
}
pub fn as_str(&self) -> &str {
&self.0
}
}
impl fmt::Display for Topic {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(&self.0)
}
}