Struct minidump_common::format::CONTEXT_PPC64
source · [−]pub struct CONTEXT_PPC64 {
pub context_flags: u64,
pub srr0: u64,
pub srr1: u64,
pub gpr: [u64; 32],
pub cr: u64,
pub xer: u64,
pub lr: u64,
pub ctr: u64,
pub vrsave: u64,
pub float_save: FLOATING_SAVE_AREA_PPC,
pub vector_save: VECTOR_SAVE_AREA_PPC,
}Expand description
A PPC64 CPU context
This is a Breakpad extension, as there is no definition of CONTEXT for PPC64 in WinNT.h.
Fields
context_flags: u64srr0: u64srr1: u64gpr: [u64; 32]cr: u64xer: u64lr: u64ctr: u64vrsave: u64float_save: FLOATING_SAVE_AREA_PPCvector_save: VECTOR_SAVE_AREA_PPCTrait Implementations
sourceimpl Clone for CONTEXT_PPC64
impl Clone for CONTEXT_PPC64
sourcefn clone(&self) -> CONTEXT_PPC64
fn clone(&self) -> CONTEXT_PPC64
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_PPC64
impl Debug for CONTEXT_PPC64
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for CONTEXT_PPC64 where
CONTEXT_PPC64: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for CONTEXT_PPC64 where
CONTEXT_PPC64: 'a,
Auto Trait Implementations
impl RefUnwindSafe for CONTEXT_PPC64
impl Send for CONTEXT_PPC64
impl Sync for CONTEXT_PPC64
impl Unpin for CONTEXT_PPC64
impl UnwindSafe for CONTEXT_PPC64
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