pub struct BaseChipsetBuilderOutput<'a> {
pub chipset_builder: ChipsetBuilder<'a>,
pub device_interfaces: BaseChipsetDeviceInterfaces,
}
Expand description
A bundle of goodies the base chipset builder returns.
Fields§
§chipset_builder: ChipsetBuilder<'a>
A chipset builder that can be extended with additional devices.
device_interfaces: BaseChipsetDeviceInterfaces
A collection of device-specific interfaces that may need to be wired up into upper-layer VMM specific code.
Auto Trait Implementations§
impl<'a> Freeze for BaseChipsetBuilderOutput<'a>
impl<'a> !RefUnwindSafe for BaseChipsetBuilderOutput<'a>
impl<'a> Send for BaseChipsetBuilderOutput<'a>
impl<'a> !Sync for BaseChipsetBuilderOutput<'a>
impl<'a> Unpin for BaseChipsetBuilderOutput<'a>
impl<'a> !UnwindSafe for BaseChipsetBuilderOutput<'a>
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