pub enum AsyncGroupError {
ThreadPanicked(String),
}Expand description
The enum type representing the reasons for errors that can occur within an AsyncGroup.
Variants§
ThreadPanicked(String)
Indicates that a spawned thread by AsyncGroup has panicked.
Contains the panic message if available.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AsyncGroupError
impl RefUnwindSafe for AsyncGroupError
impl Send for AsyncGroupError
impl Sync for AsyncGroupError
impl Unpin for AsyncGroupError
impl UnwindSafe for AsyncGroupError
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