#[repr(C)]pub struct WinModule {
pub baseAddress: u64,
pub entryPoint: u64,
pub sizeOfModule: u64,
pub name: *mut i8,
pub loadCount: i16,
}
Fields§
§baseAddress: u64
§entryPoint: u64
§sizeOfModule: u64
§name: *mut i8
§loadCount: i16
Trait Implementations§
impl Copy for WinModule
impl Send for WinModule
impl Sync for WinModule
Auto Trait Implementations§
impl Freeze for WinModule
impl RefUnwindSafe for WinModule
impl Unpin for WinModule
impl UnwindSafe for WinModule
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