#[repr(C)]pub struct srtp_ssrc_t {
pub type_: srtp_ssrc_type_t,
pub value: c_uint,
}
Expand description
@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§
Source§impl Clone for srtp_ssrc_t
impl Clone for srtp_ssrc_t
Source§fn clone(&self) -> srtp_ssrc_t
fn clone(&self) -> srtp_ssrc_t
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 srtp_ssrc_t
impl Debug for srtp_ssrc_t
impl Copy for srtp_ssrc_t
Auto Trait Implementations§
impl Freeze for srtp_ssrc_t
impl RefUnwindSafe for srtp_ssrc_t
impl Send for srtp_ssrc_t
impl Sync for srtp_ssrc_t
impl Unpin for srtp_ssrc_t
impl UnwindSafe for srtp_ssrc_t
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)