pub trait Client<'a> {
// Required method
fn op_done(
&'a self,
result: Result<(), ErrorCode>,
output: &'static mut [u8],
);
}
Expand description
Implement this trait and use set_client()
in order to receive callbacks.