pub enum RoutingEntry {
Irqchip {
pin: u32,
},
Msi {
address_lo: u32,
address_hi: u32,
data: u32,
},
HvSint {
vp: u32,
sint: u8,
},
}
Variants§
Trait Implementations§
Source§impl Clone for RoutingEntry
impl Clone for RoutingEntry
Source§fn clone(&self) -> RoutingEntry
fn clone(&self) -> RoutingEntry
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 RoutingEntry
impl Debug for RoutingEntry
Source§impl PartialEq for RoutingEntry
impl PartialEq for RoutingEntry
impl Copy for RoutingEntry
impl Eq for RoutingEntry
impl StructuralPartialEq for RoutingEntry
Auto Trait Implementations§
impl Freeze for RoutingEntry
impl RefUnwindSafe for RoutingEntry
impl Send for RoutingEntry
impl Sync for RoutingEntry
impl Unpin for RoutingEntry
impl UnwindSafe for RoutingEntry
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