pub struct FinishedTask<T> {
pub index: Index,
pub name: SharedString,
pub output: T,
}
Expand description
Information about a finished task.
Fields§
§index: Index
The index of the task.
name: SharedString
The name of the task, if any.
output: T
The output of the task.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for FinishedTask<T>where
T: Freeze,
impl<T> RefUnwindSafe for FinishedTask<T>where
T: RefUnwindSafe,
impl<T> Send for FinishedTask<T>where
T: Send,
impl<T> Sync for FinishedTask<T>where
T: Sync,
impl<T> Unpin for FinishedTask<T>where
T: Unpin,
impl<T> UnwindSafe for FinishedTask<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