pub struct RemoteChipsetDeviceWorker<T> { /* private fields */ }Expand description
The chipset device worker.
This worker wraps any device implementing ChipsetDevice and handles device operations sent via mesh channels.
Trait Implementations§
Source§impl<T: RemoteDynamicResolvers> Worker for RemoteChipsetDeviceWorker<T>
impl<T: RemoteDynamicResolvers> Worker for RemoteChipsetDeviceWorker<T>
Source§const ID: WorkerId<Self::Parameters>
const ID: WorkerId<Self::Parameters>
String identifying the Worker. Used when launching workers in separate processes
to specify which workers are supported and which worker to launch.
IDs must be unique within a given worker host.
Source§type Parameters = RemoteChipsetDeviceWorkerParameters<T>
type Parameters = RemoteChipsetDeviceWorkerParameters<T>
Parameters passed to launch the worker. Used with [
Worker::new]. Read moreAuto Trait Implementations§
impl<T> Freeze for RemoteChipsetDeviceWorker<T>
impl<T> !RefUnwindSafe for RemoteChipsetDeviceWorker<T>
impl<T> Send for RemoteChipsetDeviceWorker<T>where
T: Send,
impl<T> !Sync for RemoteChipsetDeviceWorker<T>
impl<T> !Unpin for RemoteChipsetDeviceWorker<T>
impl<T> !UnwindSafe for RemoteChipsetDeviceWorker<T>
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