pub trait ProxyImpl<'c>where
Self: Sized,{
// Required methods
fn builder(conn: &Connection) -> Builder<'c, Self>;
fn into_inner(self) -> Proxy<'c>;
fn inner(&self) -> &Proxy<'c>;
}
Expand description
This trait is implemented by all async proxies, which are generated with the
dbus_proxy
macro.
Required Methods§
Sourcefn builder(conn: &Connection) -> Builder<'c, Self>
fn builder(conn: &Connection) -> Builder<'c, Self>
Returns a customizable builder for this proxy.
Sourcefn into_inner(self) -> Proxy<'c>
fn into_inner(self) -> Proxy<'c>
Consumes self
, returning the underlying zbus::Proxy
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.