pub struct DeviceNodeParts<CS: CounterStore + 'static> {
pub host: DeviceNodeHost<CS>,
pub node: DeviceNode<CS>,
pub mac: DeviceNodeHandle<CS>,
pub node_key: [u8; 32],
}Expand description
Everything bring-up produced, for the board to spawn its task shims around. Embassy tasks cannot be generic, so the spawning itself stays board-side.
Fields§
§host: DeviceNodeHost<CS>§node: DeviceNode<CS>§mac: DeviceNodeHandle<CS>§node_key: [u8; 32]The public key the MAC was actually built around, for the device-domain sync gate.
Auto Trait Implementations§
impl<CS> Freeze for DeviceNodeParts<CS>
impl<CS> !RefUnwindSafe for DeviceNodeParts<CS>
impl<CS> !Send for DeviceNodeParts<CS>
impl<CS> !Sync for DeviceNodeParts<CS>
impl<CS> Unpin for DeviceNodeParts<CS>
impl<CS> !UnwindSafe for DeviceNodeParts<CS>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more