pub struct DebuggerWorker<T: Listener> { /* private fields */ }
Trait Implementations§
Source§impl<T: GdbListener> Worker for DebuggerWorker<T>
impl<T: GdbListener> Worker for DebuggerWorker<T>
Source§const ID: WorkerId<Self::Parameters> = T::ID
const ID: WorkerId<Self::Parameters> = T::ID
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 = DebuggerParameters<T>
type Parameters = DebuggerParameters<T>
Parameters passed to launch the worker. Used with [
Worker::new
]. Read moreSource§type State = DebuggerParameters<T>
type State = DebuggerParameters<T>
State used to implement hot restart. Used with [
Worker::restart
].Auto Trait Implementations§
impl<T> Freeze for DebuggerWorker<T>
impl<T> !RefUnwindSafe for DebuggerWorker<T>
impl<T> !Send for DebuggerWorker<T>
impl<T> !Sync for DebuggerWorker<T>
impl<T> Unpin for DebuggerWorker<T>
impl<T> !UnwindSafe for DebuggerWorker<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