Skip to main content

ServiceProxy

Trait ServiceProxy 

Source
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§

Source

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".

Implementors§