Struct hypervisor::x86_64::IoapicRedirectionTableEntry  
source · #[repr(C)]pub struct IoapicRedirectionTableEntry {
    data: [u8; 8],
}Expand description
Represents a IOAPIC redirection table entry.
Fields§
§data: [u8; 8]Implementations§
source§impl IoapicRedirectionTableEntry
 
impl IoapicRedirectionTableEntry
pub fn new() -> IoapicRedirectionTableEntry
source§impl IoapicRedirectionTableEntry
 
impl IoapicRedirectionTableEntry
pub fn get_vector(&self) -> <BitField8 as BitFieldSpecifier>::GetterType
pub fn set_vector(&mut self, val: <BitField8 as BitFieldSpecifier>::SetterType)
pub fn get_delivery_mode( &self, ) -> <DeliveryMode as BitFieldSpecifier>::GetterType
pub fn set_delivery_mode( &mut self, val: <DeliveryMode as BitFieldSpecifier>::SetterType, )
pub fn get_dest_mode( &self, ) -> <DestinationMode as BitFieldSpecifier>::GetterType
pub fn set_dest_mode( &mut self, val: <DestinationMode as BitFieldSpecifier>::SetterType, )
pub fn get_delivery_status( &self, ) -> <DeliveryStatus as BitFieldSpecifier>::GetterType
pub fn set_delivery_status( &mut self, val: <DeliveryStatus as BitFieldSpecifier>::SetterType, )
pub fn get_polarity(&self) -> <BitField1 as BitFieldSpecifier>::GetterType
pub fn set_polarity( &mut self, val: <BitField1 as BitFieldSpecifier>::SetterType, )
pub fn get_remote_irr(&self) -> <bool as BitFieldSpecifier>::GetterType
pub fn set_remote_irr(&mut self, val: <bool as BitFieldSpecifier>::SetterType)
pub fn get_trigger_mode(&self) -> <TriggerMode as BitFieldSpecifier>::GetterType
pub fn set_trigger_mode( &mut self, val: <TriggerMode as BitFieldSpecifier>::SetterType, )
pub fn get_interrupt_mask(&self) -> <bool as BitFieldSpecifier>::GetterType
pub fn set_interrupt_mask( &mut self, val: <bool as BitFieldSpecifier>::SetterType, )
pub fn get_reserved(&self) -> <BitField39 as BitFieldSpecifier>::GetterType
pub fn set_reserved( &mut self, val: <BitField39 as BitFieldSpecifier>::SetterType, )
pub fn get_dest_id(&self) -> <BitField8 as BitFieldSpecifier>::GetterType
pub fn set_dest_id(&mut self, val: <BitField8 as BitFieldSpecifier>::SetterType)
Trait Implementations§
source§impl Clone for IoapicRedirectionTableEntry
 
impl Clone for IoapicRedirectionTableEntry
source§fn clone(&self) -> IoapicRedirectionTableEntry
 
fn clone(&self) -> IoapicRedirectionTableEntry
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 IoapicRedirectionTableEntry
 
impl Debug for IoapicRedirectionTableEntry
source§impl Default for IoapicRedirectionTableEntry
 
impl Default for IoapicRedirectionTableEntry
source§fn default() -> IoapicRedirectionTableEntry
 
fn default() -> IoapicRedirectionTableEntry
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IoapicRedirectionTableEntry
 
impl<'de> Deserialize<'de> for IoapicRedirectionTableEntry
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
source§impl From<&IoapicRedirectionTableEntry> for kvm_ioapic_state__bindgen_ty_1
 
impl From<&IoapicRedirectionTableEntry> for kvm_ioapic_state__bindgen_ty_1
source§fn from(item: &IoapicRedirectionTableEntry) -> Self
 
fn from(item: &IoapicRedirectionTableEntry) -> Self
Converts to this type from the input type.
source§impl From<&kvm_ioapic_state__bindgen_ty_1> for IoapicRedirectionTableEntry
 
impl From<&kvm_ioapic_state__bindgen_ty_1> for IoapicRedirectionTableEntry
source§impl PartialEq for IoapicRedirectionTableEntry
 
impl PartialEq for IoapicRedirectionTableEntry
source§fn eq(&self, other: &IoapicRedirectionTableEntry) -> bool
 
fn eq(&self, other: &IoapicRedirectionTableEntry) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for IoapicRedirectionTableEntry
impl Eq for IoapicRedirectionTableEntry
impl StructuralPartialEq for IoapicRedirectionTableEntry
Auto Trait Implementations§
impl Freeze for IoapicRedirectionTableEntry
impl RefUnwindSafe for IoapicRedirectionTableEntry
impl Send for IoapicRedirectionTableEntry
impl Sync for IoapicRedirectionTableEntry
impl Unpin for IoapicRedirectionTableEntry
impl UnwindSafe for IoapicRedirectionTableEntry
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
source§impl<T> CloneToUninit for Twhere
    T: Copy,
 
impl<T> CloneToUninit for Twhere
    T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> Downcast for Twhere
    T: Any,
 
impl<T> Downcast for Twhere
    T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
 
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert 
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
 
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert 
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
 
fn as_any(&self) -> &(dyn Any + 'static)
Convert 
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert 
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.