#[repr(C)]pub struct sema_t {
pub value: c_uint,
pub state: sema_state_t,
pub mutex: mutex_t,
}
Expand description
@brief A Semaphore.
Fields§
§value: c_uint
< value of the semaphore
state: sema_state_t
< state of the semaphore
mutex: mutex_t
< mutex of the semaphore
Trait Implementations§
impl Copy for sema_t
Auto Trait Implementations§
impl RefUnwindSafe for sema_t
impl !Send for sema_t
impl !Sync for sema_t
impl Unpin for sema_t
impl UnwindSafe for sema_t
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