[][src]Struct mediasoup::data_consumer::DataConsumerOptions

#[non_exhaustive]pub struct DataConsumerOptions {
    pub app_data: AppData,
    // some fields omitted
}

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
app_data: AppData

Custom application data.

Implementations

impl DataConsumerOptions[src]

pub fn new_sctp(data_producer_id: DataProducerId) -> Self[src]

Inherits parameters of corresponding DataProducer.

pub fn new_direct(data_producer_id: DataProducerId) -> Self[src]

For DirectTransport.

pub fn new_sctp_ordered(data_producer_id: DataProducerId) -> Self[src]

Messages will be sent reliably in order.

pub fn new_sctp_unordered_with_life_time(
    data_producer_id: DataProducerId,
    max_packet_life_time: u16
) -> Self
[src]

Messages will be sent unreliably with time (in milliseconds) after which a SCTP packet will stop being retransmitted.

pub fn new_sctp_unordered_with_retransmits(
    data_producer_id: DataProducerId,
    max_retransmits: u16
) -> Self
[src]

Messages will be sent unreliably with a limited number of retransmission attempts.

Trait Implementations

impl Clone for DataConsumerOptions[src]

impl Debug for DataConsumerOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,