Enum async_rustbus::conn::DBusAddr [−][src]
pub enum DBusAddr<P: AsRef<Path>, S: ToSocketAddrs, B: AsRef<[u8]>> { Path(P), Tcp(S), Abstract(B), }
A address for connecting to a DBus dubs. These can be file systems paths to a Unix socket, a TCP address, or an abstract Unix socket.
Variants
Implementations
impl<P: AsRef<Path>> DBusAddr<P, &str, [u8; 0]>
[src]
impl<P: AsRef<Path>> DBusAddr<P, &str, [u8; 0]>
[src]Create a DbusAddr from a filesystem path.
impl<S: ToSocketAddrs> DBusAddr<&str, S, [u8; 0]>
[src]
impl<S: ToSocketAddrs> DBusAddr<&str, S, [u8; 0]>
[src]Create a DbusAddr from a TCP socket address.
impl<B: AsRef<[u8]>> DBusAddr<&str, &str, B>
[src]
impl<B: AsRef<[u8]>> DBusAddr<&str, &str, B>
[src]Create a DbusAddr from an abstract unix socket address.
pub fn unx_abstract(b: B) -> Self
[src]
Auto Trait Implementations
impl<P, S, B> RefUnwindSafe for DBusAddr<P, S, B> where
B: RefUnwindSafe,
P: RefUnwindSafe,
S: RefUnwindSafe,
B: RefUnwindSafe,
P: RefUnwindSafe,
S: RefUnwindSafe,
impl<P, S, B> Send for DBusAddr<P, S, B> where
B: Send,
P: Send,
S: Send,
B: Send,
P: Send,
S: Send,
impl<P, S, B> Sync for DBusAddr<P, S, B> where
B: Sync,
P: Sync,
S: Sync,
B: Sync,
P: Sync,
S: Sync,
impl<P, S, B> Unpin for DBusAddr<P, S, B> where
B: Unpin,
P: Unpin,
S: Unpin,
B: Unpin,
P: Unpin,
S: Unpin,
impl<P, S, B> UnwindSafe for DBusAddr<P, S, B> where
B: UnwindSafe,
P: UnwindSafe,
S: UnwindSafe,
B: UnwindSafe,
P: UnwindSafe,
S: UnwindSafe,