pub trait ControllerProxyInterface: Send + Sync {
type SuspendResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn suspend(
&self,
peer_id: Option<&mut PeerId>,
token: ServerEnd<StreamSuspenderMarker>
) -> Self::SuspendResponseFut;
}