pub struct StubTracker;Trait Implementations§
Source§impl TrackerHandle for StubTracker
impl TrackerHandle for StubTracker
Source§fn assign_process(&self, _pid: u32) -> Result<(), String>
fn assign_process(&self, _pid: u32) -> Result<(), String>
Add a freshly-spawned process to the tracked tree. Called by the
controller immediately after
tokio::process::Command::spawn.
Descendants created AFTER this call are caught automatically;
descendants created BEFORE (in the ~1ms race window) escape.
No-op in the stub impl — platforms without a real tracker
silently accept the PID and move on.Source§fn list_members(&self) -> Vec<TrackedProcess>
fn list_members(&self) -> Vec<TrackedProcess>
Enumerate the current members of this tracked tree. Read more
Source§fn kill_pid(&self, _pid: u32) -> bool
fn kill_pid(&self, _pid: u32) -> bool
Terminate a single process by PID, if it’s a member of this tree.
Returns
true if the PID was known and the kill was attempted.Source§fn confidence(&self) -> TrackingConfidence
fn confidence(&self) -> TrackingConfidence
Describes how confidently this platform tracks descendants.
Surfaced to the UI so the user can tell when tracking is
best-effort and escape-prone.
Auto Trait Implementations§
impl Freeze for StubTracker
impl RefUnwindSafe for StubTracker
impl Send for StubTracker
impl Sync for StubTracker
impl Unpin for StubTracker
impl UnwindSafe for StubTracker
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.