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.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".