Struct minidump_common::format::OtherCpuInfo
source · 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 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 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 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