pub trait ToOwnedDBusAddrs<'a> {
type Iter: Iterator<Item = Result<OwnedDBusAddr>>;
// Required method
fn to_owned_dbus_addrs(&'a self) -> Self::Iter;
}
Expand description
A trait for objects which can be converted or resolved to one or more OwnedDBusAddr
values.
Required Associated Types§
type Iter: Iterator<Item = Result<OwnedDBusAddr>>
Required Methods§
Sourcefn to_owned_dbus_addrs(&'a self) -> Self::Iter
fn to_owned_dbus_addrs(&'a self) -> Self::Iter
Get an iterator over the D-Bus addresses.