pub trait ToDBusAddrs<'a> {
type Iter: Iterator<Item = Result<DBusAddr<'a>>>;
// Required method
fn to_dbus_addrs(&'a self) -> Self::Iter;
}Expand description
A trait for objects which can be converted or resolved to one or more DBusAddr values.