pub struct RtpTraceInfo {
pub rtp_packet: Box<Dump>,
pub is_rtx: bool,
}
Expand description
The table RtpTraceInfo
in the namespace FBS.Producer
Generated from these locations:
- Table
RtpTraceInfo
in the filefbs/producer.fbs:80
Fields§
§rtp_packet: Box<Dump>
The field rtp_packet
in the table RtpTraceInfo
is_rtx: bool
The field is_rtx
in the table RtpTraceInfo
Implementations§
Source§impl RtpTraceInfo
impl RtpTraceInfo
Sourcepub fn builder() -> RtpTraceInfoBuilder<()>
pub fn builder() -> RtpTraceInfoBuilder<()>
Creates a RtpTraceInfoBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_rtp_packet: impl WriteAs<Offset<Dump>>, field_is_rtx: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for RtpTraceInfo
impl Clone for RtpTraceInfo
Source§fn clone(&self) -> RtpTraceInfo
fn clone(&self) -> RtpTraceInfo
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 RtpTraceInfo
impl Debug for RtpTraceInfo
Source§impl Default for RtpTraceInfo
impl Default for RtpTraceInfo
Source§impl<'de> Deserialize<'de> for RtpTraceInfo
impl<'de> Deserialize<'de> for RtpTraceInfo
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 RtpTraceInfo
impl Hash for RtpTraceInfo
Source§impl Ord for RtpTraceInfo
impl Ord for RtpTraceInfo
Source§fn cmp(&self, other: &RtpTraceInfo) -> Ordering
fn cmp(&self, other: &RtpTraceInfo) -> 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 RtpTraceInfo
impl PartialEq for RtpTraceInfo
Source§impl PartialOrd for RtpTraceInfo
impl PartialOrd for RtpTraceInfo
Source§impl Serialize for RtpTraceInfo
impl Serialize for RtpTraceInfo
Source§impl<'a> TryFrom<RtpTraceInfoRef<'a>> for RtpTraceInfo
impl<'a> TryFrom<RtpTraceInfoRef<'a>> for RtpTraceInfo
impl Eq for RtpTraceInfo
impl StructuralPartialEq for RtpTraceInfo
impl VectorWrite<Offset<RtpTraceInfo>> for RtpTraceInfo
impl WriteAs<Offset<RtpTraceInfo>> for RtpTraceInfo
impl WriteAsOffset<RtpTraceInfo> for RtpTraceInfo
impl<T0: WriteAs<Offset<Dump>>, T1: WriteAsDefault<bool, bool>> WriteAsOffset<RtpTraceInfo> for RtpTraceInfoBuilder<(T0, T1)>
impl WriteAsOptional<Offset<RtpTraceInfo>> for RtpTraceInfo
Auto Trait Implementations§
impl Freeze for RtpTraceInfo
impl RefUnwindSafe for RtpTraceInfo
impl Send for RtpTraceInfo
impl Sync for RtpTraceInfo
impl Unpin for RtpTraceInfo
impl UnwindSafe for RtpTraceInfo
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