Struct dbus::nonblock::Proxy

source ·
pub struct Proxy<'a, C> {
    pub destination: BusName<'a>,
    pub path: Path<'a>,
    pub connection: C,
    pub timeout: Duration,
}
Expand description

A struct that wraps a connection, destination and path.

A D-Bus “Proxy” is a client-side object that corresponds to a remote object on the server side. Calling methods on the proxy object calls methods on the remote object. Read more in the D-Bus tutorial

Fields§

§destination: BusName<'a>

Destination, i e what D-Bus service you’re communicating with

§path: Path<'a>

Object path on the destination

§connection: C

Some way to send and/or receive messages, non-blocking.

§timeout: Duration

Timeout for method calls

Implementations§

Creates a new proxy struct.

Make a method call using typed input argument, returns a future that resolves to the typed output arguments.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.