gio/debug_controller_dbus.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::prelude::*;
4
5use crate::{DBusConnection, DebugControllerDBus};
6
7pub trait DebugControllerDBusExtManual: IsA<DebugControllerDBus> + Sized {
8 fn connection(&self) -> DBusConnection {
9 ObjectExt::property(self.as_ref(), "connection")
10 }
11}
12
13impl<O: IsA<DebugControllerDBus>> DebugControllerDBusExtManual for O {}