pub enum HookType {
Inline,
HotPatch,
MidFunction,
Chained,
}Expand description
type of hook
Variants§
Inline
standard inline hook (prologue replacement)
HotPatch
hot-patch style hook
MidFunction
mid-function hook
Chained
hook in a chain
Trait Implementations§
impl Copy for HookType
impl Eq for HookType
impl StructuralPartialEq for HookType
Auto Trait Implementations§
impl Freeze for HookType
impl RefUnwindSafe for HookType
impl Send for HookType
impl Sync for HookType
impl Unpin for HookType
impl UnwindSafe for HookType
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