[][src]Struct dbus_launch::Daemon

pub struct Daemon { /* fields omitted */ }

A running D-Bus daemon process.

The process is killed on drop.

Implementations

impl Daemon[src]

pub fn address(&self) -> &str[src]

Returns the address of the message bus.

pub fn config_dir(&self) -> &Path[src]

Returns the path to daemon configuration directory.

The directory is temporary and removed after daemon is dropped.

pub fn pid(&self) -> pid_t[src]

Returns the PID of the daemon process.

Trait Implementations

impl Debug for Daemon[src]

impl Drop for Daemon[src]

Auto Trait Implementations

impl RefUnwindSafe for Daemon

impl Send for Daemon

impl Sync for Daemon

impl Unpin for Daemon

impl UnwindSafe for Daemon

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,