[][src]Struct srtp2_sys::srtp_ssrc_t

#[repr(C)]pub struct srtp_ssrc_t {
    pub type_: srtp_ssrc_type_t,
    pub value: c_uint,
}

@brief An srtp_ssrc_t represents a particular SSRC value, or a `wildcard' SSRC.

An srtp_ssrc_t represents a particular SSRC value (if its type is ssrc_specific), or a wildcard SSRC value that will match all outbound SSRCs (if its type is ssrc_any_outbound) or all inbound SSRCs (if its type is ssrc_any_inbound).

Fields

type_: srtp_ssrc_type_t

< The type of this particular SSRC

value: c_uint

< The value of this SSRC, if it is not a */

Trait Implementations

impl Clone for srtp_ssrc_t[src]

impl Copy for srtp_ssrc_t[src]

impl Debug for srtp_ssrc_t[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> 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.