[][src]Struct mediasoup::rtp_parameters::RtpCodecParametersParameters

pub struct RtpCodecParametersParameters(_);

Implementations

impl RtpCodecParametersParameters[src]

pub fn new() -> Self[src]

pub fn insert<K, V>(&mut self, key: K, value: V) -> &mut Self where
    K: Into<String>,
    V: Into<RtpCodecParametersParametersValue>, 
[src]

pub fn iter(&self) -> Iter<'_, String, RtpCodecParametersParametersValue>[src]

pub fn get(&self, key: &str) -> Option<&RtpCodecParametersParametersValue>[src]

Trait Implementations

impl Clone for RtpCodecParametersParameters[src]

impl Debug for RtpCodecParametersParameters[src]

impl Default for RtpCodecParametersParameters[src]

impl<'de> Deserialize<'de> for RtpCodecParametersParameters[src]

impl Eq for RtpCodecParametersParameters[src]

impl<K> Extend<(K, RtpCodecParametersParametersValue)> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> From<[(K, RtpCodecParametersParametersValue); 1]> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> From<[(K, RtpCodecParametersParametersValue); 2]> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> From<[(K, RtpCodecParametersParametersValue); 3]> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> From<[(K, RtpCodecParametersParametersValue); 4]> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> From<[(K, RtpCodecParametersParametersValue); 5]> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl<K> FromIterator<(K, RtpCodecParametersParametersValue)> for RtpCodecParametersParameters where
    K: Into<String>, 
[src]

impl Hash for RtpCodecParametersParameters[src]

impl IntoIterator for RtpCodecParametersParameters[src]

type Item = (String, RtpCodecParametersParametersValue)

The type of the elements being iterated over.

type IntoIter = IntoIter<String, RtpCodecParametersParametersValue>

Which kind of iterator are we turning this into?

impl Ord for RtpCodecParametersParameters[src]

impl PartialEq<RtpCodecParametersParameters> for RtpCodecParametersParameters[src]

impl PartialOrd<RtpCodecParametersParameters> for RtpCodecParametersParameters[src]

impl Serialize for RtpCodecParametersParameters[src]

impl StructuralEq for RtpCodecParametersParameters[src]

impl StructuralPartialEq for RtpCodecParametersParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,