#[repr(C)]pub struct IdaxEvent {
pub kind: c_int,
pub address: u64,
pub secondary_address: u64,
pub new_name: *const c_char,
pub old_name: *const c_char,
pub old_value: u32,
pub repeatable: c_int,
}Expand description
Flat C transfer model for ida::event::Event.
Fields§
§kind: c_int§address: u64§secondary_address: u64§new_name: *const c_char§old_name: *const c_char§old_value: u32§repeatable: c_intTrait Implementations§
impl Copy for IdaxEvent
Auto Trait Implementations§
impl Freeze for IdaxEvent
impl RefUnwindSafe for IdaxEvent
impl !Send for IdaxEvent
impl !Sync for IdaxEvent
impl Unpin for IdaxEvent
impl UnsafeUnpin for IdaxEvent
impl UnwindSafe for IdaxEvent
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