pub struct DumpResponse {
pub id: String,
pub kind: MediaKind,
pub type_: Type,
pub rtp_parameters: Box<RtpParameters>,
pub rtp_mapping: Box<RtpMapping>,
pub rtp_streams: Vec<Dump>,
pub trace_event_types: Vec<TraceEventType>,
pub paused: bool,
}
Expand description
The table DumpResponse
in the namespace FBS.Producer
Generated from these locations:
- Table
DumpResponse
in the filefbs/producer.fbs:21
Fields§
§id: String
The field id
in the table DumpResponse
kind: MediaKind
The field kind
in the table DumpResponse
type_: Type
The field type
in the table DumpResponse
rtp_parameters: Box<RtpParameters>
The field rtp_parameters
in the table DumpResponse
rtp_mapping: Box<RtpMapping>
The field rtp_mapping
in the table DumpResponse
rtp_streams: Vec<Dump>
The field rtp_streams
in the table DumpResponse
trace_event_types: Vec<TraceEventType>
The field trace_event_types
in the table DumpResponse
paused: bool
The field paused
in the table DumpResponse
Implementations§
Source§impl DumpResponse
impl DumpResponse
Sourcepub fn builder() -> DumpResponseBuilder<()>
pub fn builder() -> DumpResponseBuilder<()>
Creates a DumpResponseBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_id: impl WriteAs<Offset<str>>, field_kind: impl WriteAsDefault<MediaKind, MediaKind>, field_type_: impl WriteAsDefault<Type, Type>, field_rtp_parameters: impl WriteAs<Offset<RtpParameters>>, field_rtp_mapping: impl WriteAs<Offset<RtpMapping>>, field_rtp_streams: impl WriteAs<Offset<[Offset<Dump>]>>, field_trace_event_types: impl WriteAs<Offset<[TraceEventType]>>, field_paused: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for DumpResponse
impl Clone for DumpResponse
Source§fn clone(&self) -> DumpResponse
fn clone(&self) -> DumpResponse
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 DumpResponse
impl Debug for DumpResponse
Source§impl<'de> Deserialize<'de> for DumpResponse
impl<'de> Deserialize<'de> for DumpResponse
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 PartialEq for DumpResponse
impl PartialEq for DumpResponse
Source§impl PartialOrd for DumpResponse
impl PartialOrd for DumpResponse
Source§impl Serialize for DumpResponse
impl Serialize for DumpResponse
Source§impl<'a> TryFrom<DumpResponseRef<'a>> for DumpResponse
impl<'a> TryFrom<DumpResponseRef<'a>> for DumpResponse
impl StructuralPartialEq for DumpResponse
impl VectorWrite<Offset<DumpResponse>> for DumpResponse
impl WriteAs<Offset<DumpResponse>> for DumpResponse
impl WriteAsOffset<DumpResponse> for DumpResponse
impl<T0: WriteAs<Offset<str>>, T1: WriteAsDefault<MediaKind, MediaKind>, T2: WriteAsDefault<Type, Type>, T3: WriteAs<Offset<RtpParameters>>, T4: WriteAs<Offset<RtpMapping>>, T5: WriteAs<Offset<[Offset<Dump>]>>, T6: WriteAs<Offset<[TraceEventType]>>, T7: WriteAsDefault<bool, bool>> WriteAsOffset<DumpResponse> for DumpResponseBuilder<(T0, T1, T2, T3, T4, T5, T6, T7)>
impl WriteAsOptional<Offset<DumpResponse>> for DumpResponse
Auto Trait Implementations§
impl Freeze for DumpResponse
impl RefUnwindSafe for DumpResponse
impl Send for DumpResponse
impl Sync for DumpResponse
impl Unpin for DumpResponse
impl UnwindSafe for DumpResponse
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