pub trait RollingPacketCaptureProxyInterface: Send + Sync {
// Required methods
fn detach(&self, name: &str) -> Result<(), Error>;
fn stop_and_download(
&self,
channel: ServerEnd<FileMarker>,
) -> Result<(), Error>;
fn discard(&self) -> Result<(), Error>;
}