mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-06-06 07:28:59 +00:00
Add Display impl for StructureRef too
This commit is contained in:
parent
7c01e1e46f
commit
9427e75fa4
1 changed files with 6 additions and 0 deletions
|
@ -485,6 +485,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