[][src]Struct dbus::nonblock::Proxy

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

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

impl<'a, C> Proxy<'a, C>[src]

pub fn new<D: Into<BusName<'a>>, P: Into<Path<'a>>>(
    dest: D,
    path: P,
    timeout: Duration,
    connection: C
) -> Self
[src]

Creates a new proxy struct.

impl<'a, T, C> Proxy<'a, C> where
    T: NonblockReply,
    C: Deref<Target = T>, 
[src]

pub fn method_call<'i, 'm, R: ReadAll + 'static, A: AppendAll, I: Into<Interface<'i>>, M: Into<Member<'m>>>(
    &self,
    i: I,
    m: M,
    args: A
) -> MethodReply<R>
[src]

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

Trait Implementations

impl<'a, C: Clone> Clone for Proxy<'a, C>[src]

impl<'a, C: Debug> Debug for Proxy<'a, C>[src]

impl<'a, T: NonblockReply, C: Deref<Target = T>> Introspectable for Proxy<'a, C>[src]

impl<'a, T: NonblockReply, C: Deref<Target = T>> ObjectManager for Proxy<'a, C>[src]

impl<'a, T: NonblockReply, C: Deref<Target = T>> Peer for Proxy<'a, C>[src]

impl<'a, T: NonblockReply, C: Deref<Target = T>> Properties for Proxy<'a, C>[src]

Auto Trait Implementations

impl<'a, C> RefUnwindSafe for Proxy<'a, C> where
    C: RefUnwindSafe

impl<'a, C> Send for Proxy<'a, C> where
    C: Send

impl<'a, C> Sync for Proxy<'a, C> where
    C: Sync

impl<'a, C> Unpin for Proxy<'a, C> where
    C: Unpin

impl<'a, C> UnwindSafe for Proxy<'a, C> where
    C: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.