pub struct SrtpParameters {
pub crypto_suite: SrtpCryptoSuite,
pub key_base64: String,
}
Expand description
SRTP parameters.
Fields§
§crypto_suite: SrtpCryptoSuite
Encryption and authentication transforms to be used.
key_base64: String
SRTP keying material (master key and salt) in Base64.
Trait Implementations§
Source§impl Clone for SrtpParameters
impl Clone for SrtpParameters
Source§fn clone(&self) -> SrtpParameters
fn clone(&self) -> SrtpParameters
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SrtpParameters
impl Debug for SrtpParameters
Source§impl<'de> Deserialize<'de> for SrtpParameters
impl<'de> Deserialize<'de> for SrtpParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SrtpParameters
impl Hash for SrtpParameters
Source§impl Ord for SrtpParameters
impl Ord for SrtpParameters
Source§fn cmp(&self, other: &SrtpParameters) -> Ordering
fn cmp(&self, other: &SrtpParameters) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SrtpParameters
impl PartialEq for SrtpParameters
Source§impl PartialOrd for SrtpParameters
impl PartialOrd for SrtpParameters
Source§impl Serialize for SrtpParameters
impl Serialize for SrtpParameters
impl Eq for SrtpParameters
impl StructuralPartialEq for SrtpParameters
Auto Trait Implementations§
impl Freeze for SrtpParameters
impl RefUnwindSafe for SrtpParameters
impl Send for SrtpParameters
impl Sync for SrtpParameters
impl Unpin for SrtpParameters
impl UnwindSafe for SrtpParameters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more