pub struct RtcpFeedback {
pub type_: String,
pub parameter: Option<String>,
}
Expand description
The table RtcpFeedback
in the namespace FBS.RtpParameters
Generated from these locations:
- Table
RtcpFeedback
in the filefbs/rtpParameters.fbs:49
Fields§
§type_: String
The field type
in the table RtcpFeedback
parameter: Option<String>
The field parameter
in the table RtcpFeedback
Implementations§
Source§impl RtcpFeedback
impl RtcpFeedback
Sourcepub fn builder() -> RtcpFeedbackBuilder<()>
pub fn builder() -> RtcpFeedbackBuilder<()>
Creates a RtcpFeedbackBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_type_: impl WriteAs<Offset<str>>, field_parameter: impl WriteAsOptional<Offset<str>>, ) -> Offset<Self>
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<'de> Deserialize<'de> for RtcpFeedback
impl<'de> Deserialize<'de> for RtcpFeedback
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for RtcpFeedback
impl Hash for RtcpFeedback
Source§impl Ord for RtcpFeedback
impl Ord for RtcpFeedback
Source§fn cmp(&self, other: &RtcpFeedback) -> Ordering
fn cmp(&self, other: &RtcpFeedback) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RtcpFeedback
impl PartialEq for RtcpFeedback
Source§impl PartialOrd for RtcpFeedback
impl PartialOrd for RtcpFeedback
Source§impl Serialize for RtcpFeedback
impl Serialize for RtcpFeedback
Source§impl<'a> TryFrom<RtcpFeedbackRef<'a>> for RtcpFeedback
impl<'a> TryFrom<RtcpFeedbackRef<'a>> for RtcpFeedback
impl Eq for RtcpFeedback
impl StructuralPartialEq for RtcpFeedback
impl VectorWrite<Offset<RtcpFeedback>> for RtcpFeedback
impl WriteAs<Offset<RtcpFeedback>> for RtcpFeedback
impl WriteAsOffset<RtcpFeedback> for RtcpFeedback
impl<T0: WriteAs<Offset<str>>, T1: WriteAsOptional<Offset<str>>> WriteAsOffset<RtcpFeedback> for RtcpFeedbackBuilder<(T0, T1)>
impl WriteAsOptional<Offset<RtcpFeedback>> for RtcpFeedback
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