#[repr(C)]pub struct switch_rtcp_frame {
pub report_count: u16,
pub packet_type: u16,
pub ssrc: u32,
pub ntp_msw: u32,
pub ntp_lsw: u32,
pub timestamp: u32,
pub packet_count: u32,
pub octect_count: u32,
pub nb_reports: u32,
pub reports: [switch_rtcp_report_block_frame; 5],
}Fields§
§report_count: u16§packet_type: u16§ssrc: u32§ntp_msw: u32§ntp_lsw: u32§timestamp: u32§packet_count: u32§octect_count: u32§nb_reports: u32§reports: [switch_rtcp_report_block_frame; 5]Trait Implementations§
Source§impl Clone for switch_rtcp_frame
impl Clone for switch_rtcp_frame
Source§fn clone(&self) -> switch_rtcp_frame
fn clone(&self) -> switch_rtcp_frame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 switch_rtcp_frame
impl Debug for switch_rtcp_frame
Source§impl Default for switch_rtcp_frame
impl Default for switch_rtcp_frame
Source§fn default() -> switch_rtcp_frame
fn default() -> switch_rtcp_frame
Returns the “default value” for a type. Read more
impl Copy for switch_rtcp_frame
Auto Trait Implementations§
impl Freeze for switch_rtcp_frame
impl RefUnwindSafe for switch_rtcp_frame
impl Send for switch_rtcp_frame
impl Sync for switch_rtcp_frame
impl Unpin for switch_rtcp_frame
impl UnsafeUnpin for switch_rtcp_frame
impl UnwindSafe for switch_rtcp_frame
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