Struct r_bin_info_t

Source
#[repr(C)]
pub struct r_bin_info_t {
Show 36 fields pub file: *mut c_char, pub type_: *mut c_char, pub bclass: *mut c_char, pub rclass: *mut c_char, pub arch: *mut c_char, pub cpu: *mut c_char, pub machine: *mut c_char, pub head_flag: *mut c_char, pub features: *mut c_char, pub os: *mut c_char, pub subsystem: *mut c_char, pub rpath: *mut c_char, pub guid: *mut c_char, pub debug_file_name: *mut c_char, pub lang: *const c_char, pub default_cc: *mut c_char, pub file_hashes: *mut RList, pub bits: c_int, pub has_va: c_int, pub has_pi: c_int, pub has_canary: c_int, pub has_retguard: c_int, pub has_sanitizers: c_int, pub has_crypto: c_int, pub has_nx: c_int, pub big_endian: c_int, pub has_lit: bool, pub actual_checksum: *mut c_char, pub claimed_checksum: *mut c_char, pub pe_overlay: c_int, pub signature: bool, pub dbg_info: c_ulonglong, pub sum: [RBinHash; 3], pub baddr: c_ulonglong, pub intrp: *mut c_char, pub compiler: *mut c_char,
}

Fields§

§file: *mut c_char§type_: *mut c_char§bclass: *mut c_char§rclass: *mut c_char§arch: *mut c_char§cpu: *mut c_char§machine: *mut c_char§head_flag: *mut c_char§features: *mut c_char§os: *mut c_char§subsystem: *mut c_char§rpath: *mut c_char§guid: *mut c_char§debug_file_name: *mut c_char§lang: *const c_char§default_cc: *mut c_char§file_hashes: *mut RList§bits: c_int§has_va: c_int§has_pi: c_int§has_canary: c_int§has_retguard: c_int§has_sanitizers: c_int§has_crypto: c_int§has_nx: c_int§big_endian: c_int§has_lit: bool§actual_checksum: *mut c_char§claimed_checksum: *mut c_char§pe_overlay: c_int§signature: bool§dbg_info: c_ulonglong§sum: [RBinHash; 3]§baddr: c_ulonglong§intrp: *mut c_char§compiler: *mut c_char

Trait Implementations§

Source§

impl Clone for r_bin_info_t

Source§

fn clone(&self) -> r_bin_info_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for r_bin_info_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for r_bin_info_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.