pub enum TraceInfo {
KeyFrameTraceInfo(Box<KeyFrameTraceInfo>),
FirTraceInfo(Box<FirTraceInfo>),
PliTraceInfo(Box<PliTraceInfo>),
RtpTraceInfo(Box<RtpTraceInfo>),
SrTraceInfo(Box<SrTraceInfo>),
}
Expand description
The union TraceInfo
in the namespace FBS.Producer
Generated from these locations:
- Union
TraceInfo
in the filefbs/producer.fbs:59
Variants§
KeyFrameTraceInfo(Box<KeyFrameTraceInfo>)
The variant of type KeyFrameTraceInfo
in the union TraceInfo
FirTraceInfo(Box<FirTraceInfo>)
The variant of type FirTraceInfo
in the union TraceInfo
PliTraceInfo(Box<PliTraceInfo>)
The variant of type PliTraceInfo
in the union TraceInfo
RtpTraceInfo(Box<RtpTraceInfo>)
The variant of type RtpTraceInfo
in the union TraceInfo
SrTraceInfo(Box<SrTraceInfo>)
The variant of type SrTraceInfo
in the union TraceInfo
Implementations§
Source§impl TraceInfo
impl TraceInfo
Sourcepub fn builder() -> TraceInfoBuilder<Uninitialized>
pub fn builder() -> TraceInfoBuilder<Uninitialized>
Creates a TraceInfoBuilder for serializing an instance of this table.
pub fn create_key_frame_trace_info( builder: &mut Builder, value: impl WriteAsOffset<KeyFrameTraceInfo>, ) -> UnionOffset<Self>
pub fn create_fir_trace_info( builder: &mut Builder, value: impl WriteAsOffset<FirTraceInfo>, ) -> UnionOffset<Self>
pub fn create_pli_trace_info( builder: &mut Builder, value: impl WriteAsOffset<PliTraceInfo>, ) -> UnionOffset<Self>
pub fn create_rtp_trace_info( builder: &mut Builder, value: impl WriteAsOffset<RtpTraceInfo>, ) -> UnionOffset<Self>
pub fn create_sr_trace_info( builder: &mut Builder, value: impl WriteAsOffset<SrTraceInfo>, ) -> UnionOffset<Self>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TraceInfo
impl<'de> Deserialize<'de> for TraceInfo
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 Ord for TraceInfo
impl Ord for TraceInfo
Source§impl PartialOrd for TraceInfo
impl PartialOrd for TraceInfo
Source§impl<'a> TryFrom<TraceInfoRef<'a>> for TraceInfo
impl<'a> TryFrom<TraceInfoRef<'a>> for TraceInfo
impl Eq for TraceInfo
impl StructuralPartialEq for TraceInfo
impl WriteAsOptionalUnion<TraceInfo> for TraceInfo
impl WriteAsUnion<TraceInfo> for TraceInfo
Auto Trait Implementations§
impl Freeze for TraceInfo
impl RefUnwindSafe for TraceInfo
impl Send for TraceInfo
impl Sync for TraceInfo
impl Unpin for TraceInfo
impl UnwindSafe for TraceInfo
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