pub struct GicV2mInfo {
pub frame_base: u64,
pub spi_base: u32,
pub spi_count: u32,
}Expand description
GIC v2m MSI frame parameters.
Fields§
§frame_base: u64Physical base address of the v2m MSI frame.
spi_base: u32First GIC interrupt ID in the SPI range owned by this frame.
spi_count: u32Number of SPIs owned by this frame.
Trait Implementations§
Source§impl Clone for GicV2mInfo
impl Clone for GicV2mInfo
Source§fn clone(&self) -> GicV2mInfo
fn clone(&self) -> GicV2mInfo
Returns a duplicate 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 GicV2mInfo
impl Debug for GicV2mInfo
Source§impl PartialEq for GicV2mInfo
impl PartialEq for GicV2mInfo
impl Copy for GicV2mInfo
impl Eq for GicV2mInfo
impl StructuralPartialEq for GicV2mInfo
Auto Trait Implementations§
impl Freeze for GicV2mInfo
impl RefUnwindSafe for GicV2mInfo
impl Send for GicV2mInfo
impl Sync for GicV2mInfo
impl Unpin for GicV2mInfo
impl UnwindSafe for GicV2mInfo
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