forked from mirrors/gstreamer-rs
Add Display impl for StructureRef too
This commit is contained in:
parent
f346d57b4f
commit
ce9b98f338
1 changed files with 6 additions and 0 deletions
|
@ -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 {
|
impl fmt::Debug for StructureRef {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
f.write_str(&StructureRef::to_string(self))
|
f.write_str(&StructureRef::to_string(self))
|
||||||
|
|
Loading…
Reference in a new issue