pub trait FidlResponder<R> {
// Required method
fn try_send(self, response: R) -> Result<(), Error>;
}Expand description
A type capable of responding to FIDL requests.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".