[][src]Struct kvm_bindings::kvm_segment

#[repr(C)]pub struct kvm_segment {
    pub base: __u64,
    pub limit: __u32,
    pub selector: __u16,
    pub type_: __u8,
    pub present: __u8,
    pub dpl: __u8,
    pub db: __u8,
    pub s: __u8,
    pub l: __u8,
    pub g: __u8,
    pub avl: __u8,
    pub unusable: __u8,
    pub padding: __u8,
}

Fields

base: __u64limit: __u32selector: __u16type_: __u8present: __u8dpl: __u8db: __u8s: __u8l: __u8g: __u8avl: __u8unusable: __u8padding: __u8

Trait Implementations

impl Clone for kvm_segment[src]

impl Copy for kvm_segment[src]

impl Debug for kvm_segment[src]

impl Default for kvm_segment[src]

impl PartialEq<kvm_segment> for kvm_segment[src]

impl StructuralPartialEq for kvm_segment[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.