GetFirmwareVersion

Trait GetFirmwareVersion 

Source
pub trait GetFirmwareVersion: CollectData {
    // Provided methods
    fn get_firmware_version<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn parse_firmware_version(
        &self,
        data: &HashMap<DataField, Value>,
    ) -> Option<String> { ... }
}

Provided Methods§

Source

fn get_firmware_version<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Source

fn parse_firmware_version( &self, data: &HashMap<DataField, Value>, ) -> Option<String>

Implementors§