[][src]Struct kvm_bindings::kvm_run

#[repr(C)]pub struct kvm_run {
    pub request_interrupt_window: __u8,
    pub immediate_exit: __u8,
    pub padding1: [__u8; 6],
    pub exit_reason: __u32,
    pub ready_for_interrupt_injection: __u8,
    pub if_flag: __u8,
    pub flags: __u16,
    pub cr8: __u64,
    pub apic_base: __u64,
    pub __bindgen_anon_1: kvm_run__bindgen_ty_1,
    pub kvm_valid_regs: __u64,
    pub kvm_dirty_regs: __u64,
    pub s: kvm_run__bindgen_ty_2,
}

Fields

request_interrupt_window: __u8immediate_exit: __u8padding1: [__u8; 6]exit_reason: __u32ready_for_interrupt_injection: __u8if_flag: __u8flags: __u16cr8: __u64apic_base: __u64__bindgen_anon_1: kvm_run__bindgen_ty_1kvm_valid_regs: __u64kvm_dirty_regs: __u64s: kvm_run__bindgen_ty_2

Trait Implementations

impl Clone for kvm_run[src]

impl Copy for kvm_run[src]

impl Default for kvm_run[src]

Auto Trait Implementations

impl RefUnwindSafe for kvm_run

impl Send for kvm_run

impl Sync for kvm_run

impl Unpin for kvm_run

impl UnwindSafe for kvm_run

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.