Struct mediasoup::producer::ProducerOptions[][src]

#[non_exhaustive]pub struct ProducerOptions {
    pub kind: MediaKind,
    pub rtp_parameters: RtpParameters,
    pub paused: bool,
    pub key_frame_request_delay: u32,
    pub app_data: AppData,
    // some fields omitted
}

Producer options.

Notes on usage

Check the RTP Parameters and Capabilities section for more details (TypeScript-oriented, but concepts apply here as well).

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.
kind: MediaKind

Media kind.

rtp_parameters: RtpParameters

RTP parameters defining what the endpoint is sending.

paused: bool

Whether the producer must start in paused mode. Default false.

key_frame_request_delay: u32

Just for video. Time (in ms) before asking the sender for a new key frame after having asked a previous one. If 0 there is no delay.

app_data: AppData

Custom application data.

Implementations

impl ProducerOptions[src]

pub fn new_pipe_transport(
    producer_id: ProducerId,
    kind: MediaKind,
    rtp_parameters: RtpParameters
) -> Self
[src]

Create producer options that will be used with Pipe transport

pub fn new(kind: MediaKind, rtp_parameters: RtpParameters) -> Self[src]

Create producer options that will be used with non-Pipe transport

Trait Implementations

impl Clone for ProducerOptions[src]

impl Debug for ProducerOptions[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.