Skip to main content

Crate edge_executor

Crate edge_executor 

Source

Structs§

BoundQueue
A fixed-capacity queue implementation using heapless::Deque.
Executor
An async executor.
FallibleTask
A spawned task with a fallible response.
LocalExecutor
A thread-local executor.
Task
A spawned task.
UnboundQueue
An unbounded queue implementation using VecDeque from the alloc crate.

Traits§

ExecutorQueue
A trait abstracting the async executor queue. The queue MUST be thread-safe (and could be ISR-safe if the executor is used in an embedded context).

Functions§

block_on
Blocks the current thread on a future.