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: u32srr0: u32srr1: u32gpr: [u32; 32]cr: u32xer: u32lr: u32ctr: u32mq: u32vrsave: u32float_save: FLOATING_SAVE_AREA_PPCvector_save: VECTOR_SAVE_AREA_PPCTrait Implementations
sourceimpl Clone for CONTEXT_PPC
impl Clone for CONTEXT_PPC
sourcefn clone(&self) -> CONTEXT_PPC
fn clone(&self) -> CONTEXT_PPC
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CONTEXT_PPC
impl Debug for CONTEXT_PPC
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for CONTEXT_PPC where
CONTEXT_PPC: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for CONTEXT_PPC where
CONTEXT_PPC: 'a,
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more