#[repr(C)]pub struct IdaxDataTypedValue {
pub kind: c_int,
pub unsigned_value: u64,
pub signed_value: i64,
pub floating_value: f64,
pub pointer_value: u64,
pub string_value: *mut c_char,
pub bytes: *mut u8,
pub byte_count: usize,
pub elements: *mut IdaxDataTypedValue,
pub element_count: usize,
}Fields§
§kind: c_int§unsigned_value: u64§signed_value: i64§floating_value: f64§pointer_value: u64§string_value: *mut c_char§bytes: *mut u8§byte_count: usize§elements: *mut IdaxDataTypedValue§element_count: usizeTrait Implementations§
Source§impl Clone for IdaxDataTypedValue
impl Clone for IdaxDataTypedValue
Source§fn clone(&self) -> IdaxDataTypedValue
fn clone(&self) -> IdaxDataTypedValue
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 IdaxDataTypedValue
impl Debug for IdaxDataTypedValue
Source§impl Default for IdaxDataTypedValue
impl Default for IdaxDataTypedValue
impl Copy for IdaxDataTypedValue
Auto Trait Implementations§
impl Freeze for IdaxDataTypedValue
impl RefUnwindSafe for IdaxDataTypedValue
impl !Send for IdaxDataTypedValue
impl !Sync for IdaxDataTypedValue
impl Unpin for IdaxDataTypedValue
impl UnsafeUnpin for IdaxDataTypedValue
impl UnwindSafe for IdaxDataTypedValue
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