hooking 0.3.0

hooking libs in rust
Documentation
use std::ffi::c_void;

use thiserror::Error;

pub type Result<T> = std::result::Result<T, HookingError>;

#[derive(Debug, Error)]
pub enum HookingError {
    #[error("Memory error")]
    MemoryError(#[from] crate::mem::MemoryError),

    #[error("Assembly error")]
    AssemblyError(#[from] crate::asm::AssemblyError),

    #[error("Provided destination for hook \"{0}\" was null")]
    NoDestination(String),

    #[error("Provided target for hook {0:?} is invalid")]
    InvalidTarget(*const c_void),

    #[error("Provided destination for hook {0:?} is invalid")]
    InvalidDestination(*const c_void),

    #[error("Tried to enable hook that is not hooked {0:?}")]
    NotHooked(*const c_void),
}