pub struct Function {
pub name: String,
pub start_address: u64,
pub end_address: u64,
pub size: u64,
pub function_type: FunctionType,
pub calling_convention: Option<String>,
pub parameters: Vec<Parameter>,
pub return_type: Option<String>,
}Expand description
Function information
Fields§
§name: StringFunction name
start_address: u64Start address
end_address: u64End address
size: u64Size in bytes
function_type: FunctionTypeFunction type
calling_convention: Option<String>Calling convention
parameters: Vec<Parameter>Parameters (if available)
return_type: Option<String>Return type (if available)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Function
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnwindSafe for Function
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