zbus/blocking/
fdo.rs

1//! D-Bus standard interfaces.
2//!
3//! Provides blocking versions of the proxy types in [`zbus::fdo`] module.
4
5pub use crate::fdo::{
6    dbus::{
7        DBusProxyBlocking as DBusProxy, NameAcquiredIterator, NameLostIterator,
8        NameOwnerChangedIterator,
9    },
10    introspectable::IntrospectableProxyBlocking as IntrospectableProxy,
11    monitoring::MonitoringProxyBlocking as MonitoringProxy,
12    object_manager::{
13        InterfacesAddedIterator, InterfacesRemovedIterator,
14        ObjectManagerProxyBlocking as ObjectManagerProxy,
15    },
16    peer::PeerProxyBlocking as PeerProxy,
17    properties::{PropertiesChangedIterator, PropertiesProxyBlocking as PropertiesProxy},
18    stats::StatsProxyBlocking as StatsProxy,
19};