pub enum AsyncGroupError {
FailToCreateAsyncRuntime,
}
Expand description
The enum type representing the reasons for errors that can occur within an AsyncGroup
.
Variants§
FailToCreateAsyncRuntime
Indicates a failure to create a new asynchronous runtime, which is necessary
for executing the tasks within the AsyncGroup
.
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