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