#[repr(C)]pub struct LOCK {
pub tag: LOCKTAG,
pub grantMask: LOCKMASK,
pub waitMask: LOCKMASK,
pub procLocks: SHM_QUEUE,
pub waitProcs: PROC_QUEUE,
pub requested: [c_int; 10],
pub nRequested: c_int,
pub granted: [c_int; 10],
pub nGranted: c_int,
}Fields§
§tag: LOCKTAG§grantMask: LOCKMASK§waitMask: LOCKMASK§procLocks: SHM_QUEUE§waitProcs: PROC_QUEUE§requested: [c_int; 10]§nRequested: c_int§granted: [c_int; 10]§nGranted: c_intTrait Implementations§
Auto Trait Implementations§
impl !Send for LOCK
impl !Sync for LOCK
impl Freeze for LOCK
impl RefUnwindSafe for LOCK
impl Unpin for LOCK
impl UnsafeUnpin for LOCK
impl UnwindSafe for LOCK
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