#[repr(C)]pub struct _IMAGE_CE_RUNTIME_FUNCTION_ENTRY {
pub FuncStart: DWORD,
pub _bitfield_align_1: [u32; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
}
Fields§
§FuncStart: DWORD
§_bitfield_align_1: [u32; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>
Implementations§
Source§impl _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
pub fn PrologLen(&self) -> DWORD
pub fn set_PrologLen(&mut self, val: DWORD)
pub unsafe fn PrologLen_raw(this: *const Self) -> DWORD
pub unsafe fn set_PrologLen_raw(this: *mut Self, val: DWORD)
pub fn FuncLen(&self) -> DWORD
pub fn set_FuncLen(&mut self, val: DWORD)
pub unsafe fn FuncLen_raw(this: *const Self) -> DWORD
pub unsafe fn set_FuncLen_raw(this: *mut Self, val: DWORD)
pub fn ThirtyTwoBit(&self) -> DWORD
pub fn set_ThirtyTwoBit(&mut self, val: DWORD)
pub unsafe fn ThirtyTwoBit_raw(this: *const Self) -> DWORD
pub unsafe fn set_ThirtyTwoBit_raw(this: *mut Self, val: DWORD)
pub fn ExceptionFlag(&self) -> DWORD
pub fn set_ExceptionFlag(&mut self, val: DWORD)
pub unsafe fn ExceptionFlag_raw(this: *const Self) -> DWORD
pub unsafe fn set_ExceptionFlag_raw(this: *mut Self, val: DWORD)
pub fn new_bitfield_1( PrologLen: DWORD, FuncLen: DWORD, ThirtyTwoBit: DWORD, ExceptionFlag: DWORD, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Clone for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
Source§fn clone(&self) -> _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
fn clone(&self) -> _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Ord for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Ord for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
Source§fn cmp(&self, other: &_IMAGE_CE_RUNTIME_FUNCTION_ENTRY) -> Ordering
fn cmp(&self, other: &_IMAGE_CE_RUNTIME_FUNCTION_ENTRY) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl PartialEq for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
Source§fn eq(&self, other: &_IMAGE_CE_RUNTIME_FUNCTION_ENTRY) -> bool
fn eq(&self, other: &_IMAGE_CE_RUNTIME_FUNCTION_ENTRY) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl PartialOrd for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Copy for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Eq for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl StructuralPartialEq for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
Auto Trait Implementations§
impl Freeze for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl RefUnwindSafe for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Send for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Sync for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl Unpin for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
impl UnwindSafe for _IMAGE_CE_RUNTIME_FUNCTION_ENTRY
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