pub trait RpmbLocalServerHandler<___T: Transport = Channel> {
// Required methods
fn get_device_info(
&mut self,
responder: Responder<GetDeviceInfo, ___T>,
) -> impl Future<Output = ()>;
fn request(
&mut self,
request: Request<Request, ___T>,
responder: Responder<Request, ___T>,
) -> impl Future<Output = ()>;
}Expand description
A server handler for the Rpmb protocol.
See Rpmb for more details.
Required Methods§
fn get_device_info( &mut self, responder: Responder<GetDeviceInfo, ___T>, ) -> impl Future<Output = ()>
fn request( &mut self, request: Request<Request, ___T>, responder: Responder<Request, ___T>, ) -> impl Future<Output = ()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.