pub struct DumpResponse {
pub id: String,
pub data_producer_id: String,
pub type_: Type,
pub sctp_stream_parameters: Option<Box<SctpStreamParameters>>,
pub label: String,
pub protocol: String,
pub buffered_amount_low_threshold: u32,
pub paused: bool,
pub data_producer_paused: bool,
pub subchannels: Vec<u16>,
}
Expand description
The table DumpResponse
in the namespace FBS.DataConsumer
Generated from these locations:
- Table
DumpResponse
in the filefbs/dataConsumer.fbs:15
Fields§
§id: String
The field id
in the table DumpResponse
data_producer_id: String
The field data_producer_id
in the table DumpResponse
type_: Type
The field type
in the table DumpResponse
sctp_stream_parameters: Option<Box<SctpStreamParameters>>
The field sctp_stream_parameters
in the table DumpResponse
label: String
The field label
in the table DumpResponse
protocol: String
The field protocol
in the table DumpResponse
buffered_amount_low_threshold: u32
The field buffered_amount_low_threshold
in the table DumpResponse
paused: bool
The field paused
in the table DumpResponse
data_producer_paused: bool
The field data_producer_paused
in the table DumpResponse
subchannels: Vec<u16>
The field subchannels
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_data_producer_id: impl WriteAs<Offset<str>>, field_type_: impl WriteAsDefault<Type, Type>, field_sctp_stream_parameters: impl WriteAsOptional<Offset<SctpStreamParameters>>, field_label: impl WriteAs<Offset<str>>, field_protocol: impl WriteAs<Offset<str>>, field_buffered_amount_low_threshold: impl WriteAsDefault<u32, u32>, field_paused: impl WriteAsDefault<bool, bool>, field_data_producer_paused: impl WriteAsDefault<bool, bool>, field_subchannels: impl WriteAs<Offset<[u16]>>, ) -> 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<str>>, T2: WriteAsDefault<Type, Type>, T3: WriteAsOptional<Offset<SctpStreamParameters>>, T4: WriteAs<Offset<str>>, T5: WriteAs<Offset<str>>, T6: WriteAsDefault<u32, u32>, T7: WriteAsDefault<bool, bool>, T8: WriteAsDefault<bool, bool>, T9: WriteAs<Offset<[u16]>>> WriteAsOffset<DumpResponse> for DumpResponseBuilder<(T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)>
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