pub trait SnoopProxyInterface: Send + Sync {
type StartResponseFut: Future<Output = Result<Status, Error>> + Send;
// Required method
fn start(
&self,
follow: bool,
host_device: Option<&str>
) -> Self::StartResponseFut;
}