pub enum UnsafeStateWrapperError {
NoThreadIdAvailable(NoThreadIdAvailableError),
}Expand description
An error which occurs while performing operations specific to UnsafeStateWrapper, such as attempting to construct one.
Variants§
NoThreadIdAvailable(NoThreadIdAvailableError)
Could not construct UnsafeStateWrapper because all thread slots for the provided State are already in use.
Trait Implementations§
Source§impl Debug for UnsafeStateWrapperError
impl Debug for UnsafeStateWrapperError
Auto Trait Implementations§
impl Freeze for UnsafeStateWrapperError
impl RefUnwindSafe for UnsafeStateWrapperError
impl Send for UnsafeStateWrapperError
impl Sync for UnsafeStateWrapperError
impl Unpin for UnsafeStateWrapperError
impl UnwindSafe for UnsafeStateWrapperError
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