pub struct ArchComponentState {
pub name: &'static str,
pub note_type: u32,
pub note_name: &'static [u8],
pub data: Vec<u8>,
}Expand description
Contains SSE registers on amd64, NEON on arm64, XSAVE state on amd64, etc
Fields§
§name: &'static strName
note_type: u32Note type
note_name: &'static [u8]Note name
data: Vec<u8>Data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArchComponentState
impl RefUnwindSafe for ArchComponentState
impl Send for ArchComponentState
impl Sync for ArchComponentState
impl Unpin for ArchComponentState
impl UnsafeUnpin for ArchComponentState
impl UnwindSafe for ArchComponentState
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