struct MsixConfigSnapshot {
table_entries: Vec<MsixTableEntry>,
pba_entries: Vec<u64>,
irq_gsi_vec: Vec<Option<u32>>,
masked: bool,
enabled: bool,
msix_num: u16,
pci_id: u32,
pci_address: Option<PciAddress>,
device_name: String,
}Fields§
§table_entries: Vec<MsixTableEntry>§pba_entries: Vec<u64>§irq_gsi_vec: Vec<Option<u32>>Just like MsixConfig::irq_vec, but only the GSI.
masked: bool§enabled: bool§msix_num: u16§pci_id: u32§pci_address: Option<PciAddress>§device_name: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for MsixConfigSnapshot
impl<'de> Deserialize<'de> for MsixConfigSnapshot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MsixConfigSnapshot
impl RefUnwindSafe for MsixConfigSnapshot
impl Send for MsixConfigSnapshot
impl Sync for MsixConfigSnapshot
impl Unpin for MsixConfigSnapshot
impl UnwindSafe for MsixConfigSnapshot
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