pub trait IsochronousStreamProxyInterface: Send + Sync {
type SetupDataPathResponseFut: Future<Output = Result<IsochronousStreamSetupDataPathResult, Error>> + Send;
type ReadResponseFut: Future<Output = Result<IsochronousStreamReadResponse, Error>> + Send;
// Required methods
fn setup_data_path(
&self,
payload: &IsochronousStreamSetupDataPathRequest,
) -> Self::SetupDataPathResponseFut;
fn read(&self) -> Self::ReadResponseFut;
}