pub struct UnhookResult {
pub unhooked_count: usize,
pub unhooked_functions: Vec<String>,
pub failed_functions: Vec<(String, String)>,
}Expand description
result of unhook operation
Fields§
§unhooked_count: usizenumber of functions successfully unhooked
unhooked_functions: Vec<String>functions that were unhooked
failed_functions: Vec<(String, String)>functions that failed to unhook (name, reason)
Implementations§
Source§impl UnhookResult
impl UnhookResult
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UnhookResult
impl RefUnwindSafe for UnhookResult
impl Send for UnhookResult
impl Sync for UnhookResult
impl Unpin for UnhookResult
impl UnwindSafe for UnhookResult
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