pub struct DumpResponse {
pub id: String,
pub transport_ids: Vec<String>,
pub rtp_observer_ids: Vec<String>,
pub map_producer_id_consumer_ids: Vec<StringStringArray>,
pub map_consumer_id_producer_id: Vec<StringString>,
pub map_producer_id_observer_ids: Vec<StringStringArray>,
pub map_data_producer_id_data_consumer_ids: Vec<StringStringArray>,
pub map_data_consumer_id_data_producer_id: Vec<StringString>,
}
Expand description
The table DumpResponse
in the namespace FBS.Router
Generated from these locations:
- Table
DumpResponse
in the filefbs/router.fbs:12
Fields§
§id: String
The field id
in the table DumpResponse
transport_ids: Vec<String>
The field transport_ids
in the table DumpResponse
rtp_observer_ids: Vec<String>
The field rtp_observer_ids
in the table DumpResponse
map_producer_id_consumer_ids: Vec<StringStringArray>
The field map_producer_id_consumer_ids
in the table DumpResponse
map_consumer_id_producer_id: Vec<StringString>
The field map_consumer_id_producer_id
in the table DumpResponse
map_producer_id_observer_ids: Vec<StringStringArray>
The field map_producer_id_observer_ids
in the table DumpResponse
map_data_producer_id_data_consumer_ids: Vec<StringStringArray>
The field map_data_producer_id_data_consumer_ids
in the table DumpResponse
map_data_consumer_id_data_producer_id: Vec<StringString>
The field map_data_consumer_id_data_producer_id
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_transport_ids: impl WriteAs<Offset<[Offset<str>]>>, field_rtp_observer_ids: impl WriteAs<Offset<[Offset<str>]>>, field_map_producer_id_consumer_ids: impl WriteAs<Offset<[Offset<StringStringArray>]>>, field_map_consumer_id_producer_id: impl WriteAs<Offset<[Offset<StringString>]>>, field_map_producer_id_observer_ids: impl WriteAs<Offset<[Offset<StringStringArray>]>>, field_map_data_producer_id_data_consumer_ids: impl WriteAs<Offset<[Offset<StringStringArray>]>>, field_map_data_consumer_id_data_producer_id: impl WriteAs<Offset<[Offset<StringString>]>>, ) -> 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 Hash for DumpResponse
impl Hash for DumpResponse
Source§impl Ord for DumpResponse
impl Ord for DumpResponse
Source§fn cmp(&self, other: &DumpResponse) -> Ordering
fn cmp(&self, other: &DumpResponse) -> 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 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 Eq 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: WriteAs<Offset<[Offset<str>]>>, T2: WriteAs<Offset<[Offset<str>]>>, T3: WriteAs<Offset<[Offset<StringStringArray>]>>, T4: WriteAs<Offset<[Offset<StringString>]>>, T5: WriteAs<Offset<[Offset<StringStringArray>]>>, T6: WriteAs<Offset<[Offset<StringStringArray>]>>, T7: WriteAs<Offset<[Offset<StringString>]>>> 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