pub trait ServiceProxy: Sized {
type Service: ServiceMarker<Proxy = Self>;
}
Expand description
Proxy by which a client sends messages to a FIDL service.
Required Associated Types§
Sourcetype Service: ServiceMarker<Proxy = Self>
type Service: ServiceMarker<Proxy = Self>
The FIDL service this proxy represents.
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.