pub trait StopWatcherProxyInterface: Send + Sync {
type WatchComponentResponseFut: Future<Output = Result<ClientEnd<StopWaiterMarker>, Error>> + Send;
// Required method
fn watch_component(
&self,
moniker: &str,
expected_exit: ExitStatus,
) -> Self::WatchComponentResponseFut;
}