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.

Object Safety§

This trait is not object safe.

Implementors§