pub unsafe trait HasConnectionHandles<T> {
    type Client;
    type Server;
}Expand description
A FIDL protocol which has associated connection handles.
§Safety
The associated Client and Server types must be #[repr(transparent)]
wrappers around Client<T> and Server<T> respectively.