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