pub struct MsiAddressData {
pub address: u64,
pub data: u32,
}
Expand description
An MSI address/data pair.
Fields§
§address: u64
The MSI address.
data: u32
The data payload.
Trait Implementations§
Source§impl Clone for MsiAddressData
impl Clone for MsiAddressData
Source§fn clone(&self) -> MsiAddressData
fn clone(&self) -> MsiAddressData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MsiAddressData
impl Debug for MsiAddressData
Source§impl Inspect for MsiAddressData
impl Inspect for MsiAddressData
Source§impl PartialEq for MsiAddressData
impl PartialEq for MsiAddressData
impl Copy for MsiAddressData
impl Eq for MsiAddressData
impl StructuralPartialEq for MsiAddressData
Auto Trait Implementations§
impl Freeze for MsiAddressData
impl RefUnwindSafe for MsiAddressData
impl Send for MsiAddressData
impl Sync for MsiAddressData
impl Unpin for MsiAddressData
impl UnwindSafe for MsiAddressData
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