1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
cfg_if::cfg_if! {
if #[cfg(unix)] {
use glib::translate::ToGlibPtr;
use std::mem;
use std::os::unix;
} else if #[cfg(feature = "dox")] {
pub mod unix {
pub mod io {
pub struct RawFd{}
}
}
}
}
use super::Bus;
pub trait UnixBusExtManual: 'static {
#[doc(alias = "get_pollfd")]
fn pollfd(&self) -> unix::io::RawFd;
}
impl UnixBusExtManual for Bus {
fn pollfd(&self) -> unix::io::RawFd {
#[cfg(unix)]
unsafe {
let mut pollfd = mem::MaybeUninit::zeroed();
ffi::gst_bus_get_pollfd(self.to_glib_none().0, pollfd.as_mut_ptr());
let pollfd = pollfd.assume_init();
pollfd.fd
}
#[cfg(all(not(unix), feature = "dox"))]
unix::io::RawFd {}
}
}