[][src]Struct kvm_bindings::kvm_regs

#[repr(C)]pub struct kvm_regs {
    pub rax: __u64,
    pub rbx: __u64,
    pub rcx: __u64,
    pub rdx: __u64,
    pub rsi: __u64,
    pub rdi: __u64,
    pub rsp: __u64,
    pub rbp: __u64,
    pub r8: __u64,
    pub r9: __u64,
    pub r10: __u64,
    pub r11: __u64,
    pub r12: __u64,
    pub r13: __u64,
    pub r14: __u64,
    pub r15: __u64,
    pub rip: __u64,
    pub rflags: __u64,
}

Fields

rax: __u64rbx: __u64rcx: __u64rdx: __u64rsi: __u64rdi: __u64rsp: __u64rbp: __u64r8: __u64r9: __u64r10: __u64r11: __u64r12: __u64r13: __u64r14: __u64r15: __u64rip: __u64rflags: __u64

Trait Implementations

impl Clone for kvm_regs[src]

impl Copy for kvm_regs[src]

impl Debug for kvm_regs[src]

impl Default for kvm_regs[src]

impl PartialEq<kvm_regs> for kvm_regs[src]

impl StructuralPartialEq for kvm_regs[src]

Auto Trait Implementations

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.