From ef2921225c1483caa9888a52c417011689125bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?= Date: Wed, 30 Aug 2023 16:21:43 +0200 Subject: [PATCH] add TODOs rigth in the code --- rust/src/srtp_parameters.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/src/srtp_parameters.rs b/rust/src/srtp_parameters.rs index 88efe76f05..45c1c72b33 100644 --- a/rust/src/srtp_parameters.rs +++ b/rust/src/srtp_parameters.rs @@ -54,6 +54,7 @@ impl Default for SrtpCryptoSuite { } } +// TODO: Remove once SrtpCryptoSuite is defined in fbs. impl ToString for SrtpCryptoSuite { fn to_string(&self) -> String { match self { @@ -69,6 +70,7 @@ impl ToString for SrtpCryptoSuite { #[derive(Debug, Eq, PartialEq)] pub struct ParseCryptoSuiteError; +// TODO: Remove once SrtpCryptoSuite is defined in fbs. impl FromStr for SrtpCryptoSuite { type Err = ParseCryptoSuiteError;