[−][src]Struct skyway_webrtc_gateway_api::data::DcInit
Query parameter for POST /data/connections
Shows DataConnection parameters in Browser layer. It's almost same as browser parameters.
https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel
Fields
ordered: bool
Indicates whether or not the data channel guarantees in-order delivery of messages; the default is true, which indicates that the data channel is indeed ordered.
maxPacketLifeTime: usize
The amount of time, in milliseconds, the browser is allowed to take to attempt to transmit a message.
maxRetransmits: usize
The maximum number of times the WebRTC Gateway should try to retransmit a message before giving up.
protocol: String
containing the name of the sub-protocol in use. If no protocol was specified when the data channel was created, then this property's value is "".
negotiated: bool
Indicates whether the RTCDataChannel's connection was negotiated by the Web app (true) or by the WebRTC layer (false).
id: usize
ID number (between 0 and 65,534) which uniquely identifies the RTCDataChannel.
priority: String
Show priority of this channel.
Trait Implementations
impl Clone for DcInit
[src]
impl Debug for DcInit
[src]
impl<'de> Deserialize<'de> for DcInit
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<DcInit> for DcInit
[src]
impl Serialize for DcInit
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl StructuralPartialEq for DcInit
[src]
Auto Trait Implementations
impl RefUnwindSafe for DcInit
impl Send for DcInit
impl Sync for DcInit
impl Unpin for DcInit
impl UnwindSafe for DcInit
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,