pub struct EUsbWireSpawn {
pub spawner: Spawner,
}
Expand description
A WireSpawn
impl using the embassy executor
Fields§
§spawner: Spawner
The embassy-executor spawner
Trait Implementations§
Source§impl Clone for EUsbWireSpawn
impl Clone for EUsbWireSpawn
Source§fn clone(&self) -> EUsbWireSpawn
fn clone(&self) -> EUsbWireSpawn
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 From<Spawner> for EUsbWireSpawn
impl From<Spawner> for EUsbWireSpawn
Source§impl WireSpawn for EUsbWireSpawn
impl WireSpawn for EUsbWireSpawn
Source§type Error = SpawnError
type Error = SpawnError
An error type returned when spawning fails. If this cannot happen,
Infallible
can be used.Source§fn info(&self) -> &Self::Info
fn info(&self) -> &Self::Info
Retrieve
Self::Info
Auto Trait Implementations§
impl Freeze for EUsbWireSpawn
impl RefUnwindSafe for EUsbWireSpawn
impl !Send for EUsbWireSpawn
impl !Sync for EUsbWireSpawn
impl Unpin for EUsbWireSpawn
impl UnwindSafe for EUsbWireSpawn
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