[][src]Struct mediasoup::webrtc_transport::WebRtcTransportOptions

#[non_exhaustive]pub struct WebRtcTransportOptions {
    pub listen_ips: TransportListenIps,
    pub enable_udp: bool,
    pub enable_tcp: bool,
    pub prefer_udp: bool,
    pub prefer_tcp: bool,
    pub initial_available_outgoing_bitrate: u32,
    pub enable_sctp: bool,
    pub num_sctp_streams: NumSctpStreams,
    pub max_sctp_message_size: u32,
    pub sctp_send_buffer_size: u32,
    pub app_data: AppData,
}

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.
listen_ips: TransportListenIps

Listening IP address or addresses in order of preference (first one is the preferred one).

enable_udp: bool

Listen in UDP. Default true.

enable_tcp: bool

Listen in TCP. Default false.

prefer_udp: bool

Prefer UDP. Default false.

prefer_tcp: bool

Prefer TCP. Default false.

initial_available_outgoing_bitrate: u32

Initial available outgoing bitrate (in bps). Default 600000.

enable_sctp: bool

Create a SCTP association. Default false.

num_sctp_streams: NumSctpStreams

SCTP streams number.

max_sctp_message_size: u32

Maximum allowed size for SCTP messages sent by DataProducers.

sctp_send_buffer_size: u32

Maximum SCTP send buffer used by DataConsumers. Default 262144.

app_data: AppData

Custom application data.

Implementations

impl WebRtcTransportOptions[src]

pub fn new(listen_ips: TransportListenIps) -> Self[src]

Trait Implementations

impl Clone for WebRtcTransportOptions[src]

impl Debug for WebRtcTransportOptions[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>,