#[repr(C)]pub struct RUNTIME_FUNCTION {
pub BeginAddress: DWORD,
pub EndAddress: DWORD,
pub UnwindData: DWORD,
}Expand description
Represents an entry in the function table on 64-bit Windows.
Fields§
§BeginAddress: DWORDThe address of the start of the function.
EndAddress: DWORDThe address of the end of the function.
UnwindData: DWORDThe address of the unwind information for the function.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RUNTIME_FUNCTION
impl RefUnwindSafe for RUNTIME_FUNCTION
impl Send for RUNTIME_FUNCTION
impl Sync for RUNTIME_FUNCTION
impl Unpin for RUNTIME_FUNCTION
impl UnwindSafe for RUNTIME_FUNCTION
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