forked from MountainTownTechnology/aural_isle
implement Display for Tag entities rather than to_string
This commit is contained in:
parent
520730c5d2
commit
3f9c4a79a4
|
@ -77,9 +77,10 @@ impl Tag {
|
||||||
name,
|
name,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
pub fn to_string(&self) -> String {
|
impl fmt::Display for Tag {
|
||||||
format!("Tag({}::tag::{})", &self.host, &self.name)
|
fn format(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
write!(f, "{}::tag::{}", self.host.as_ref(), self.name.as_ref())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue