#[repr(u32)]pub enum JoinError {
Other = 1,
ThreadNotFound = 2,
Timeout = 3,
}
Expand description
Possible join error states.
Variants§
Other = 1
Unclassified error.
ThreadNotFound = 2
The specified thread was not found.
Timeout = 3
The operation timed out.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinError
impl RefUnwindSafe for JoinError
impl Send for JoinError
impl Sync for JoinError
impl Unpin for JoinError
impl UnwindSafe for JoinError
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