pub(crate) enum JobResult<T> {
    None,
    Ok(T),
    Panic(Box<dyn Any + Send>),
}Variants§
Implementations§
Auto Trait Implementations§
impl<T> Freeze for JobResult<T>where
    T: Freeze,
impl<T> !RefUnwindSafe for JobResult<T>
impl<T> Send for JobResult<T>where
    T: Send,
impl<T> !Sync for JobResult<T>
impl<T> Unpin for JobResult<T>where
    T: Unpin,
impl<T> !UnwindSafe for JobResult<T>
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