pub trait TpmBackend: Send {
    // Required method
    fn execute_command<'a>(&'a mut self, command: &[u8]) -> &'a [u8] ;
}

Required Methods§

source

fn execute_command<'a>(&'a mut self, command: &[u8]) -> &'a [u8]

Implementors§