#[repr(C)]pub struct RTL_CRITICAL_SECTION_DEBUG {
pub Type: WORD,
pub CreatorBackTraceIndex: WORD,
pub CriticalSection: *mut RTL_CRITICAL_SECTION,
pub ProcessLocksList: LIST_ENTRY,
pub EntryCount: DWORD,
pub ContentionCount: DWORD,
pub Flags: DWORD,
pub CreatorBackTraceIndexHigh: WORD,
pub SpareWORD: WORD,
}
Fields
Type: WORD
CreatorBackTraceIndex: WORD
CriticalSection: *mut RTL_CRITICAL_SECTION
ProcessLocksList: LIST_ENTRY
EntryCount: DWORD
ContentionCount: DWORD
Flags: DWORD
CreatorBackTraceIndexHigh: WORD
SpareWORD: WORD
Trait Implementations
sourceimpl Clone for RTL_CRITICAL_SECTION_DEBUG
impl Clone for RTL_CRITICAL_SECTION_DEBUG
sourcefn clone(&self) -> RTL_CRITICAL_SECTION_DEBUG
fn clone(&self) -> RTL_CRITICAL_SECTION_DEBUG
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for RTL_CRITICAL_SECTION_DEBUG
Auto Trait Implementations
impl RefUnwindSafe for RTL_CRITICAL_SECTION_DEBUG
impl !Send for RTL_CRITICAL_SECTION_DEBUG
impl !Sync for RTL_CRITICAL_SECTION_DEBUG
impl Unpin for RTL_CRITICAL_SECTION_DEBUG
impl UnwindSafe for RTL_CRITICAL_SECTION_DEBUG
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more