pub trait PathProxyInterface: Send + Sync {
type SetBandwidthResponseFut: Future<Output = Result<PathSetBandwidthResult, Error>> + Send;
// Required method
fn set_bandwidth(
&self,
payload: &BandwidthRequest,
) -> Self::SetBandwidthResponseFut;
}