pub trait ProxyImpl<'p>where
Self: Sized,{
// Required methods
fn builder(conn: &Connection) -> Builder<'p, Self>;
fn into_inner(self) -> Proxy<'p>;
fn inner(&self) -> &Proxy<'p>;
}Expand description
This trait is implemented by all blocking proxies, which are generated with the
dbus_proxy macro.
Required Methods§
sourcefn builder(conn: &Connection) -> Builder<'p, Self>
fn builder(conn: &Connection) -> Builder<'p, Self>
Returns a customizable builder for this proxy.
sourcefn into_inner(self) -> Proxy<'p>
fn into_inner(self) -> Proxy<'p>
Consumes self, returning the underlying zbus::Proxy.
Object Safety§
This trait is not object safe.