pub trait RequestHandler<P: ProtocolMarker>: Send {
// Required method
fn handle_request(&self, request: Request<P>) -> Result<(), Error>;
}
Expand description
RequestHandler handles incoming FIDL requests.
pub trait RequestHandler<P: ProtocolMarker>: Send {
// Required method
fn handle_request(&self, request: Request<P>) -> Result<(), Error>;
}
RequestHandler handles incoming FIDL requests.