#[repr(C)]pub struct mpc_table {
pub signature: [c_char; 4],
pub length: c_ushort,
pub spec: c_char,
pub checksum: c_char,
pub oem: [c_char; 8],
pub productid: [c_char; 12],
pub oemptr: c_uint,
pub oemsize: c_ushort,
pub oemcount: c_ushort,
pub lapic: c_uint,
pub reserved: c_uint,
}
Fields
signature: [c_char; 4]
length: c_ushort
spec: c_char
checksum: c_char
oem: [c_char; 8]
productid: [c_char; 12]
oemptr: c_uint
oemsize: c_ushort
oemcount: c_ushort
lapic: c_uint
reserved: c_uint
Trait Implementations
impl Copy for mpc_table
Auto Trait Implementations
impl RefUnwindSafe for mpc_table
impl Send for mpc_table
impl Sync for mpc_table
impl Unpin for mpc_table
impl UnwindSafe for mpc_table
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more