Enum embassy_executor::SpawnError
source · pub enum SpawnError {
Busy,
}
Expand description
Error returned when spawning a task.
Variants§
Busy
Too many instances of this task are already running.
By default, a task marked with #[embassy_executor::task]
can only have one instance
running at a time. You may allow multiple instances to run in parallel with
#[embassy_executor::task(pool_size = 4)]
, at the cost of higher RAM usage.
Trait Implementations§
source§impl Clone for SpawnError
impl Clone for SpawnError
source§fn clone(&self) -> SpawnError
fn clone(&self) -> SpawnError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SpawnError
impl Debug for SpawnError
source§impl Format for SpawnError
impl Format for SpawnError
impl Copy for SpawnError
Auto Trait Implementations§
impl Freeze for SpawnError
impl RefUnwindSafe for SpawnError
impl Send for SpawnError
impl Sync for SpawnError
impl Unpin for SpawnError
impl UnwindSafe for SpawnError
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