pub struct VgaProxyDevice { /* private fields */ }
Implementations§
Source§impl VgaProxyDevice
impl VgaProxyDevice
pub fn new( pci_cfg_proxy: Arc<dyn ProxyVgaPciCfgAccess>, register: &dyn RegisterHostIoPortFastPath, ) -> Self
Trait Implementations§
Source§impl ChangeDeviceState for VgaProxyDevice
impl ChangeDeviceState for VgaProxyDevice
Source§impl ChipsetDevice for VgaProxyDevice
impl ChipsetDevice for VgaProxyDevice
Source§fn supports_pci(&mut self) -> Option<&mut dyn PciConfigSpace>
fn supports_pci(&mut self) -> Option<&mut dyn PciConfigSpace>
Optionally returns a trait object to send PCI config space accesses to.
Source§fn supports_pio(&mut self) -> Option<&mut dyn PortIoIntercept>
fn supports_pio(&mut self) -> Option<&mut dyn PortIoIntercept>
Optionally returns a trait object to send IO port intercepts to.
Source§fn supports_poll_device(&mut self) -> Option<&mut dyn PollDevice>
fn supports_poll_device(&mut self) -> Option<&mut dyn PollDevice>
Optionally returns a trait object to send poll requests to.
§fn supports_mmio(&mut self) -> Option<&mut (dyn MmioIntercept + 'static)>
fn supports_mmio(&mut self) -> Option<&mut (dyn MmioIntercept + 'static)>
Optionally returns a trait object to send MMIO port intercepts to.
§fn supports_line_interrupt_target(
&mut self,
) -> Option<&mut dyn LineInterruptTarget>
fn supports_line_interrupt_target( &mut self, ) -> Option<&mut dyn LineInterruptTarget>
Optionally returns a trait object to send interrupt line changes to.
§fn supports_handle_eoi(&mut self) -> Option<&mut dyn HandleEoi>
fn supports_handle_eoi(&mut self) -> Option<&mut dyn HandleEoi>
Optionally returns a trait object to send EOI requests to.
§fn supports_acknowledge_pic_interrupt(
&mut self,
) -> Option<&mut dyn AcknowledgePicInterrupt>
fn supports_acknowledge_pic_interrupt( &mut self, ) -> Option<&mut dyn AcknowledgePicInterrupt>
Optionally returns a trait object with which to acknowledge PIC
interrupts.
Source§impl InspectMut for VgaProxyDevice
impl InspectMut for VgaProxyDevice
Source§fn inspect_mut(&mut self, req: Request<'_>)
fn inspect_mut(&mut self, req: Request<'_>)
Inspects the object.
Source§impl PciConfigSpace for VgaProxyDevice
impl PciConfigSpace for VgaProxyDevice
Source§fn pci_cfg_read(&mut self, offset: u16, _value: &mut u32) -> IoResult
fn pci_cfg_read(&mut self, offset: u16, _value: &mut u32) -> IoResult
Dispatch a PCI config space read to the device with the given address.
Source§fn pci_cfg_write(&mut self, offset: u16, value: u32) -> IoResult
fn pci_cfg_write(&mut self, offset: u16, value: u32) -> IoResult
Dispatch a PCI config space write to the device with the given address.
Source§impl PollDevice for VgaProxyDevice
impl PollDevice for VgaProxyDevice
Source§fn poll_device(&mut self, cx: &mut Context<'_>)
fn poll_device(&mut self, cx: &mut Context<'_>)
Poll the device for asynchronous work. Read more
Source§impl PortIoIntercept for VgaProxyDevice
impl PortIoIntercept for VgaProxyDevice
Source§fn io_read(&mut self, io_port: u16, _data: &mut [u8]) -> IoResult
fn io_read(&mut self, io_port: u16, _data: &mut [u8]) -> IoResult
Dispatch an IO port read to the device with the given address.
Source§fn io_write(&mut self, io_port: u16, data: &[u8]) -> IoResult
fn io_write(&mut self, io_port: u16, data: &[u8]) -> IoResult
Dispatch an IO port write to the device with the given address.
Source§fn get_static_regions(&mut self) -> &[(&str, RangeInclusive<u16>)]
fn get_static_regions(&mut self) -> &[(&str, RangeInclusive<u16>)]
Report a set of static io port regions (region_name, port_range) that
cannot be remapped at runtime and are always registered. Read more
Source§impl SaveRestore for VgaProxyDevice
impl SaveRestore for VgaProxyDevice
Auto Trait Implementations§
impl Freeze for VgaProxyDevice
impl !RefUnwindSafe for VgaProxyDevice
impl Send for VgaProxyDevice
impl !Sync for VgaProxyDevice
impl Unpin for VgaProxyDevice
impl !UnwindSafe for VgaProxyDevice
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more