#[repr(C)]pub struct SignalSemaphore {
pub ss_Link: Node,
pub ss_NestCount: WORD,
pub ss_WaitQueue: MinList,
pub ss_MultipleLink: SemaphoreRequest,
pub ss_Owner: *mut Task,
pub ss_QueueCount: WORD,
}Fields§
§ss_Link: Node§ss_NestCount: WORD§ss_WaitQueue: MinList§ss_MultipleLink: SemaphoreRequest§ss_Owner: *mut Task§ss_QueueCount: WORDTrait Implementations§
Source§impl Clone for SignalSemaphore
impl Clone for SignalSemaphore
Source§fn clone(&self) -> SignalSemaphore
fn clone(&self) -> SignalSemaphore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SignalSemaphore
Auto Trait Implementations§
impl !Send for SignalSemaphore
impl !Sync for SignalSemaphore
impl Freeze for SignalSemaphore
impl RefUnwindSafe for SignalSemaphore
impl Unpin for SignalSemaphore
impl UnsafeUnpin for SignalSemaphore
impl UnwindSafe for SignalSemaphore
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