pub trait Handler: HandlerInCtx {
// Provided method
fn handle(
&self,
command: &[u8],
response: &mut [u8],
) -> Result<usize, HandleError> { ... }
}Expand description
An handler to handle an APDU command and receive a response