Struct minidump_common::format::CONTEXT_PPC
source · pub struct CONTEXT_PPC {
pub context_flags: u32,
pub srr0: u32,
pub srr1: u32,
pub gpr: [u32; 32],
pub cr: u32,
pub xer: u32,
pub lr: u32,
pub ctr: u32,
pub mq: u32,
pub vrsave: u32,
pub float_save: FLOATING_SAVE_AREA_PPC,
pub vector_save: VECTOR_SAVE_AREA_PPC,
}Expand description
A PPC CPU context
This is a Breakpad extension, as there is no definition of CONTEXT for PPC in WinNT.h.
Fields§
§context_flags: u32§srr0: u32§srr1: u32§gpr: [u32; 32]§cr: u32§xer: u32§lr: u32§ctr: u32§mq: u32§vrsave: u32§float_save: FLOATING_SAVE_AREA_PPC§vector_save: VECTOR_SAVE_AREA_PPCTrait Implementations§
source§impl Clone for CONTEXT_PPC
impl Clone for CONTEXT_PPC
source§fn clone(&self) -> CONTEXT_PPC
fn clone(&self) -> CONTEXT_PPC
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 CONTEXT_PPC
impl Debug for CONTEXT_PPC
source§impl<'a> TryFromCtx<'a, Endian> for CONTEXT_PPCwhere
CONTEXT_PPC: 'a,
impl<'a> TryFromCtx<'a, Endian> for CONTEXT_PPCwhere
CONTEXT_PPC: 'a,
source§impl<'a> TryIntoCtx<Endian> for &'a CONTEXT_PPC
impl<'a> TryIntoCtx<Endian> for &'a CONTEXT_PPC
Auto Trait Implementations§
impl RefUnwindSafe for CONTEXT_PPC
impl Send for CONTEXT_PPC
impl Sync for CONTEXT_PPC
impl Unpin for CONTEXT_PPC
impl UnwindSafe for CONTEXT_PPC
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