#[repr(C)]pub struct IdaxStackFrame {
pub local_variables_size: u64,
pub saved_registers_size: u64,
pub arguments_size: u64,
pub total_size: u64,
pub variables: *mut IdaxFrameVariable,
pub variable_count: usize,
}Fields§
§local_variables_size: u64§saved_registers_size: u64§arguments_size: u64§total_size: u64§variables: *mut IdaxFrameVariable§variable_count: usizeTrait Implementations§
Source§impl Clone for IdaxStackFrame
impl Clone for IdaxStackFrame
Source§fn clone(&self) -> IdaxStackFrame
fn clone(&self) -> IdaxStackFrame
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 IdaxStackFrame
impl Debug for IdaxStackFrame
Source§impl Default for IdaxStackFrame
impl Default for IdaxStackFrame
impl Copy for IdaxStackFrame
Auto Trait Implementations§
impl Freeze for IdaxStackFrame
impl RefUnwindSafe for IdaxStackFrame
impl !Send for IdaxStackFrame
impl !Sync for IdaxStackFrame
impl Unpin for IdaxStackFrame
impl UnsafeUnpin for IdaxStackFrame
impl UnwindSafe for IdaxStackFrame
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