pub struct OtherCpuInfo {
pub processor_features: [u64; 2],
}
Expand description
CPU information for non-x86 CPUs
This struct matches the definition of the struct of the same name from minidumpapiset.h,
which is contained within the CPU_INFORMATION
union.
Fields§
§processor_features: [u64; 2]
Trait Implementations§
Source§impl Clone for OtherCpuInfo
impl Clone for OtherCpuInfo
Source§fn clone(&self) -> OtherCpuInfo
fn clone(&self) -> OtherCpuInfo
Returns a duplicate 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 OtherCpuInfo
impl Debug for OtherCpuInfo
Source§impl<'a> TryFromCtx<'a, Endian> for OtherCpuInfowhere
OtherCpuInfo: 'a,
impl<'a> TryFromCtx<'a, Endian> for OtherCpuInfowhere
OtherCpuInfo: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a OtherCpuInfo
impl<'a> TryIntoCtx<Endian> for &'a OtherCpuInfo
Auto Trait Implementations§
impl Freeze for OtherCpuInfo
impl RefUnwindSafe for OtherCpuInfo
impl Send for OtherCpuInfo
impl Sync for OtherCpuInfo
impl Unpin for OtherCpuInfo
impl UnwindSafe for OtherCpuInfo
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