pub struct AlreadyInjectedError {
pub pid: u32,
pub dll_name: Cow<'static, str>,
}Expand description
DLL already injected into target process error.
Fields§
§pid: u32The target process ID.
dll_name: Cow<'static, str>The DLL name or path that is already loaded.
Implementations§
Trait Implementations§
Source§impl Debug for AlreadyInjectedError
impl Debug for AlreadyInjectedError
Source§impl Display for AlreadyInjectedError
impl Display for AlreadyInjectedError
Source§impl Error for AlreadyInjectedError
impl Error for AlreadyInjectedError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AlreadyInjectedError
impl RefUnwindSafe for AlreadyInjectedError
impl Send for AlreadyInjectedError
impl Sync for AlreadyInjectedError
impl Unpin for AlreadyInjectedError
impl UnsafeUnpin for AlreadyInjectedError
impl UnwindSafe for AlreadyInjectedError
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