pub enum PollTaskResult<Payload> {
Next(Payload, TaskNodePath),
None,
Busy,
}Variants§
Auto Trait Implementations§
impl<Payload> Freeze for PollTaskResult<Payload>where
Payload: Freeze,
impl<Payload> RefUnwindSafe for PollTaskResult<Payload>where
Payload: RefUnwindSafe,
impl<Payload> Send for PollTaskResult<Payload>where
Payload: Send,
impl<Payload> Sync for PollTaskResult<Payload>where
Payload: Sync,
impl<Payload> Unpin for PollTaskResult<Payload>where
Payload: Unpin,
impl<Payload> UnsafeUnpin for PollTaskResult<Payload>where
Payload: UnsafeUnpin,
impl<Payload> UnwindSafe for PollTaskResult<Payload>where
Payload: 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