pub struct FunctionMatch {Show 14 fields
pub id: i64,
pub address1: i64,
pub name1: String,
pub address2: i64,
pub name2: String,
pub similarity: f64,
pub confidence: f64,
pub flags: i64,
pub algorithm: FunctionAlgorithm,
pub evaluate: bool,
pub comment_supported: bool,
pub basic_blocks: i64,
pub edges: i64,
pub instructions: i64,
}
Fields§
§id: i64
§address1: i64
§name1: String
§address2: i64
§name2: String
§similarity: f64
§confidence: f64
§flags: i64
§algorithm: FunctionAlgorithm
§evaluate: bool
§comment_supported: bool
§basic_blocks: i64
§edges: i64
§instructions: i64
Trait Implementations§
Source§impl Clone for FunctionMatch
impl Clone for FunctionMatch
Source§fn clone(&self) -> FunctionMatch
fn clone(&self) -> FunctionMatch
Returns a copy 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 FunctionMatch
impl Debug for FunctionMatch
Auto Trait Implementations§
impl Freeze for FunctionMatch
impl RefUnwindSafe for FunctionMatch
impl Send for FunctionMatch
impl Sync for FunctionMatch
impl Unpin for FunctionMatch
impl UnwindSafe for FunctionMatch
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