implement Display for Tag entities rather than to_string

This commit is contained in:
Sundog 2023-10-18 14:19:34 -04:00
parent 520730c5d2
commit 3f9c4a79a4
1 changed files with 4 additions and 3 deletions

View File

@ -77,9 +77,10 @@ impl Tag {
name,
}
}
pub fn to_string(&self) -> String {
format!("Tag({}::tag::{})", &self.host, &self.name)
}
impl fmt::Display for Tag {
fn format(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}::tag::{}", self.host.as_ref(), self.name.as_ref())
}
}
```