pub struct FunctionReport {
pub name: String,
pub address: u64,
pub size: u64,
pub instructions: Vec<Instruction>,
}Expand description
Function-level analysis.
Fields§
§name: StringFunction symbol name.
address: u64Start address.
size: u64Declared symbol size.
instructions: Vec<Instruction>Disassembled instructions.
Trait Implementations§
Source§impl Clone for FunctionReport
impl Clone for FunctionReport
Source§fn clone(&self) -> FunctionReport
fn clone(&self) -> FunctionReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FunctionReport
impl Debug for FunctionReport
Source§impl<'de> Deserialize<'de> for FunctionReport
impl<'de> Deserialize<'de> for FunctionReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FunctionReport
impl RefUnwindSafe for FunctionReport
impl Send for FunctionReport
impl Sync for FunctionReport
impl Unpin for FunctionReport
impl UnsafeUnpin for FunctionReport
impl UnwindSafe for FunctionReport
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