[][src]Struct skyway_webrtc_gateway_api::media::RedirectParameters

pub struct RedirectParameters {
    pub video: Option<SocketInfo<PhantomId>>,
    pub video_rtcp: Option<SocketInfo<PhantomId>>,
    pub audio: Option<SocketInfo<PhantomId>>,
    pub audio_rtcp: Option<SocketInfo<PhantomId>>,
}

Shows to which socket media should be redirected.

Fields

video: Option<SocketInfo<PhantomId>>

video is redirected to this socket

video_rtcp: Option<SocketInfo<PhantomId>>

video rtcp is redirected to this socket

audio: Option<SocketInfo<PhantomId>>

audio is redirected to this socket

audio_rtcp: Option<SocketInfo<PhantomId>>

audio rtcp is redirected to this socket

Trait Implementations

impl Clone for RedirectParameters[src]

impl Debug for RedirectParameters[src]

impl<'de> Deserialize<'de> for RedirectParameters[src]

impl PartialEq<RedirectParameters> for RedirectParameters[src]

impl Serialize for RedirectParameters[src]

impl StructuralPartialEq for RedirectParameters[src]

Auto Trait Implementations

impl RefUnwindSafe for RedirectParameters

impl Send for RedirectParameters

impl Sync for RedirectParameters

impl Unpin for RedirectParameters

impl UnwindSafe for RedirectParameters

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.