pub enum DBusAddr<P: AsRef<Path>, S: ToSocketAddrs, B: AsRef<[u8]>> {
    Path(P),
    Tcp(S),
    Abstract(B),
}
Expand description

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§

source§

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

Create a DbusAddr from a filesystem path.

source

pub fn unix_path(path: P) -> Self

source§

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

Create a DbusAddr from a TCP socket address.

source

pub fn tcp_addr(s: S) -> Self

source§

impl<B: AsRef<[u8]>> DBusAddr<&str, &str, B>

Create a DbusAddr from an abstract unix socket address.

source

pub fn unx_abstract(b: B) -> Self

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.