pub struct FindFunctionsOptions<'a> {
pub default_name_prefix: &'a str,
pub base_address: u32,
pub module_code: &'a [u8],
pub symbol_map: &'a mut SymbolMap,
pub module_start_address: u32,
pub module_end_address: u32,
pub search_options: FunctionSearchOptions<'a>,
}Fields§
§default_name_prefix: &'a str§base_address: u32§module_code: &'a [u8]§symbol_map: &'a mut SymbolMap§module_start_address: u32§module_end_address: u32§search_options: FunctionSearchOptions<'a>Auto Trait Implementations§
impl<'a> Freeze for FindFunctionsOptions<'a>
impl<'a> RefUnwindSafe for FindFunctionsOptions<'a>
impl<'a> Send for FindFunctionsOptions<'a>
impl<'a> Sync for FindFunctionsOptions<'a>
impl<'a> Unpin for FindFunctionsOptions<'a>
impl<'a> !UnwindSafe for FindFunctionsOptions<'a>
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