pub trait UemReaderInternal {
    fn open(&mut self) -> UemResult;
    fn close(&mut self) -> Result<(), UemError>;
    fn send(&mut self, command: &[u8]) -> UemResultVec;
}
Expand description

Common reader methods

Required Methods§

Implementors§