Add Display impl for StructureRef too

This commit is contained in:
Sebastian Dröge 2018-04-06 13:21:45 +03:00
parent f346d57b4f
commit ce9b98f338

View file

@ -506,6 +506,12 @@ impl StructureRef {
}
}
impl fmt::Display for StructureRef {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(&StructureRef::to_string(self))
}
}
impl fmt::Debug for StructureRef {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(&StructureRef::to_string(self))