pub struct RTCPFeedback {
pub typ: String,
pub parameter: String,
}
Expand description
RTCPFeedback signals the connection to use additional RTCP packet types. https://draft.ortc.org/#dom-rtcrtcpfeedback
Fields§
§typ: String
Type is the type of feedback. see: https://draft.ortc.org/#dom-rtcrtcpfeedback valid: ack, ccm, nack, goog-remb, transport-cc
parameter: String
The parameter value depends on the type. For example, type=“nack” parameter=“pli” will send Picture Loss Indicator packets.
Trait Implementations§
Source§impl Clone for RTCPFeedback
impl Clone for RTCPFeedback
Source§fn clone(&self) -> RTCPFeedback
fn clone(&self) -> RTCPFeedback
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 RTCPFeedback
impl Debug for RTCPFeedback
Source§impl Default for RTCPFeedback
impl Default for RTCPFeedback
Source§fn default() -> RTCPFeedback
fn default() -> RTCPFeedback
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RTCPFeedback
impl RefUnwindSafe for RTCPFeedback
impl Send for RTCPFeedback
impl Sync for RTCPFeedback
impl Unpin for RTCPFeedback
impl UnwindSafe for RTCPFeedback
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