pub enum Task {
FunctionCall(FunctionCall),
ReturnValue(ReturnArguments),
IPC((ProcessId, IPCUpcallType)),
}
Expand description
Tasks that can be enqueued for a process.
This is public for external implementations of Process
.
Variants§
FunctionCall(FunctionCall)
Function pointer in the process to execute. Generally this is a upcall from a capsule.
ReturnValue(ReturnArguments)
Data to return to the process. This is used to resume a suspended process without invoking any callbacks in userspace (e.g., in response to a YieldFor).
IPC((ProcessId, IPCUpcallType))
An IPC operation that needs additional setup to configure memory access.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Task
impl !RefUnwindSafe for Task
impl !Send for Task
impl !Sync for Task
impl Unpin for Task
impl !UnwindSafe for Task
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)