#[repr(C)]pub struct LapicState {
pub regs: [c_char; 1024],
}Expand description
Fixed buffer for lapic state
Fields§
§regs: [c_char; 1024]Trait Implementations§
Source§impl Clone for LapicState
impl Clone for LapicState
Source§fn clone(&self) -> LapicState
fn clone(&self) -> LapicState
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 LapicState
impl Debug for LapicState
Source§impl Default for LapicState
impl Default for LapicState
Source§impl FromBytes for LapicState
impl FromBytes for LapicState
Source§impl FromZeros for LapicState
impl FromZeros for LapicState
Source§impl IntoBytes for LapicState
impl IntoBytes for LapicState
Source§impl TryFrom<&LapicState> for Buffer
impl TryFrom<&LapicState> for Buffer
Source§impl TryFrom<Buffer> for LapicState
impl TryFrom<Buffer> for LapicState
Source§impl TryFromBytes for LapicState
impl TryFromBytes for LapicState
Source§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for LapicState
Auto Trait Implementations§
impl Freeze for LapicState
impl RefUnwindSafe for LapicState
impl Send for LapicState
impl Sync for LapicState
impl Unpin for LapicState
impl UnwindSafe for LapicState
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