pub struct RtcpParameters {
pub cname: Option<String>,
pub reduced_size: bool,
}
Expand description
The table RtcpParameters
in the namespace FBS.RtpParameters
Generated from these locations:
- Table
RtcpParameters
in the filefbs/rtpParameters.fbs:100
Fields§
§cname: Option<String>
The field cname
in the table RtcpParameters
reduced_size: bool
The field reduced_size
in the table RtcpParameters
Implementations§
Source§impl RtcpParameters
impl RtcpParameters
Sourcepub fn builder() -> RtcpParametersBuilder<()>
pub fn builder() -> RtcpParametersBuilder<()>
Creates a RtcpParametersBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_cname: impl WriteAsOptional<Offset<str>>, field_reduced_size: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for RtcpParameters
impl Clone for RtcpParameters
Source§fn clone(&self) -> RtcpParameters
fn clone(&self) -> RtcpParameters
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 RtcpParameters
impl Debug for RtcpParameters
Source§impl Default for RtcpParameters
impl Default for RtcpParameters
Source§impl<'de> Deserialize<'de> for RtcpParameters
impl<'de> Deserialize<'de> for RtcpParameters
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 RtcpParameters
impl Hash for RtcpParameters
Source§impl Ord for RtcpParameters
impl Ord for RtcpParameters
Source§fn cmp(&self, other: &RtcpParameters) -> Ordering
fn cmp(&self, other: &RtcpParameters) -> 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 RtcpParameters
impl PartialEq for RtcpParameters
Source§impl PartialOrd for RtcpParameters
impl PartialOrd for RtcpParameters
Source§impl Serialize for RtcpParameters
impl Serialize for RtcpParameters
Source§impl<'a> TryFrom<RtcpParametersRef<'a>> for RtcpParameters
impl<'a> TryFrom<RtcpParametersRef<'a>> for RtcpParameters
impl Eq for RtcpParameters
impl StructuralPartialEq for RtcpParameters
impl VectorWrite<Offset<RtcpParameters>> for RtcpParameters
impl WriteAs<Offset<RtcpParameters>> for RtcpParameters
impl WriteAsOffset<RtcpParameters> for RtcpParameters
impl<T0: WriteAsOptional<Offset<str>>, T1: WriteAsDefault<bool, bool>> WriteAsOffset<RtcpParameters> for RtcpParametersBuilder<(T0, T1)>
impl WriteAsOptional<Offset<RtcpParameters>> for RtcpParameters
Auto Trait Implementations§
impl Freeze for RtcpParameters
impl RefUnwindSafe for RtcpParameters
impl Send for RtcpParameters
impl Sync for RtcpParameters
impl Unpin for RtcpParameters
impl UnwindSafe for RtcpParameters
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