1
2
3
4
5
6
7
8
/// Scan status of current scanner 
#[derive(Clone, Copy)]
pub enum ScanStatus {
    Ready,
    Done,
    Timeout,
    Error,
}