pub struct Waitval<T> { /* private fields */ }Expand description
An unsafe “one thread to one thread” synchronization primitive. Used for and modeled after pthread_join only, at the moment.
Implementations§
Trait Implementations§
impl<T: Send + Sync> Send for Waitval<T>
impl<T: Send + Sync> Sync for Waitval<T>
Auto Trait Implementations§
impl<T> !Freeze for Waitval<T>
impl<T> !RefUnwindSafe for Waitval<T>
impl<T> Unpin for Waitval<T>where
T: Unpin,
impl<T> UnsafeUnpin for Waitval<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Waitval<T>where
T: UnwindSafe,
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