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

Path(P)
Tcp(S)
Abstract(B)

Implementations

impl<P: AsRef<Path>> DBusAddr<P, &str, [u8; 0]>[src]

Create a DbusAddr from a filesystem path.

pub fn unix_path(path: P) -> Self[src]

impl<S: ToSocketAddrs> DBusAddr<&str, S, [u8; 0]>[src]

Create a DbusAddr from a TCP socket address.

pub fn tcp_addr(s: S) -> Self[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

impl<P, S, B> Send for DBusAddr<P, S, B> where
    B: Send,
    P: Send,
    S: Send

impl<P, S, B> Sync for DBusAddr<P, S, B> where
    B: Sync,
    P: Sync,
    S: Sync

impl<P, S, B> Unpin for DBusAddr<P, S, B> where
    B: Unpin,
    P: Unpin,
    S: Unpin

impl<P, S, B> UnwindSafe for DBusAddr<P, S, B> where
    B: UnwindSafe,
    P: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.