pub trait CodecDelayProxyInterface: Send + Sync {
type GetCodecLocalDelayRangeResponseFut: Future<Output = Result<CodecDelayGetCodecLocalDelayRangeResult, Error>> + Send;
// Required method
fn get_codec_local_delay_range(
&self,
payload: &CodecDelayGetCodecLocalDelayRangeRequest,
) -> Self::GetCodecLocalDelayRangeResponseFut;
}