mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 19:11:06 +00:00
Implement fmt::Debug for AudioInfo
This commit is contained in:
parent
8671731002
commit
6f59ceb5e1
1 changed files with 13 additions and 0 deletions
|
@ -16,6 +16,7 @@ use glib;
|
|||
use glib::translate::{from_glib, from_glib_full, from_glib_none, FromGlibPtrNone, ToGlib,
|
||||
ToGlibPtr, ToGlibPtrMut};
|
||||
|
||||
use std::fmt;
|
||||
use std::mem;
|
||||
use std::ptr;
|
||||
|
||||
|
@ -23,6 +24,18 @@ use array_init;
|
|||
|
||||
pub struct AudioInfo(ffi::GstAudioInfo, [::AudioChannelPosition; 64]);
|
||||
|
||||
impl fmt::Debug for AudioInfo {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||
f.debug_struct("AudioInfo")
|
||||
.field("rate", &self.rate())
|
||||
.field("channels", &self.channels())
|
||||
.field("positions", &self.positions())
|
||||
.field("flags", &self.flags())
|
||||
.field("layout", &self.layout())
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
pub struct AudioInfoBuilder<'a> {
|
||||
format: ::AudioFormat,
|
||||
rate: u32,
|
||||
|
|
Loading…
Reference in a new issue