Trait vga_proxy::ProxyVgaPciCfgAccess

source ·
pub trait ProxyVgaPciCfgAccess: Send + Sync {
    // Required methods
    fn vga_proxy_pci_read<'life0, 'async_trait>(
        &'life0 self,
        offset: u16,
    ) -> Pin<Box<dyn Future<Output = u32> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn vga_proxy_pci_write<'life0, 'async_trait>(
        &'life0 self,
        offset: u16,
        value: u32,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn vga_proxy_pci_read<'life0, 'async_trait>( &'life0 self, offset: u16, ) -> Pin<Box<dyn Future<Output = u32> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn vga_proxy_pci_write<'life0, 'async_trait>( &'life0 self, offset: u16, value: u32, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§