[][src]Struct web_sys::RtcRtpTransceiver

#[repr(transparent)]pub struct RtcRtpTransceiver { /* fields omitted */ }

The RtcRtpTransceiver class.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver

Implementations

impl RtcRtpTransceiver[src]

pub fn mid(&self) -> Option<String>[src]

Getter for the mid field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver

impl RtcRtpTransceiver[src]

pub fn sender(&self) -> RtcRtpSender[src]

Getter for the sender field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpSender, RtcRtpTransceiver

impl RtcRtpTransceiver[src]

pub fn receiver(&self) -> RtcRtpReceiver[src]

Getter for the receiver field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpReceiver, RtcRtpTransceiver

impl RtcRtpTransceiver[src]

pub fn stopped(&self) -> bool[src]

Getter for the stopped field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver

impl RtcRtpTransceiver[src]

pub fn direction(&self) -> RtcRtpTransceiverDirection[src]

Getter for the direction field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver, RtcRtpTransceiverDirection

impl RtcRtpTransceiver[src]

pub fn set_direction(&self, value: RtcRtpTransceiverDirection)[src]

Setter for the direction field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver, RtcRtpTransceiverDirection

impl RtcRtpTransceiver[src]

pub fn current_direction(&self) -> Option<RtcRtpTransceiverDirection>[src]

Getter for the currentDirection field of this object.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver, RtcRtpTransceiverDirection

impl RtcRtpTransceiver[src]

pub fn get_remote_track_id(&self) -> String[src]

The getRemoteTrackId() method.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver

impl RtcRtpTransceiver[src]

pub fn stop(&self)[src]

The stop() method.

MDN Documentation

This API requires the following crate features to be activated: RtcRtpTransceiver

Trait Implementations

impl AsRef<JsValue> for RtcRtpTransceiver[src]

impl AsRef<Object> for RtcRtpTransceiver[src]

impl AsRef<RtcRtpTransceiver> for RtcRtpTransceiver[src]

impl Clone for RtcRtpTransceiver[src]

impl Debug for RtcRtpTransceiver[src]

impl Deref for RtcRtpTransceiver[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for RtcRtpTransceiver[src]

impl From<JsValue> for RtcRtpTransceiver[src]

impl From<RtcRtpTransceiver> for JsValue[src]

impl From<RtcRtpTransceiver> for Object[src]

impl FromWasmAbi for RtcRtpTransceiver[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for RtcRtpTransceiver[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a RtcRtpTransceiver[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for RtcRtpTransceiver[src]

impl OptionFromWasmAbi for RtcRtpTransceiver[src]

impl OptionIntoWasmAbi for RtcRtpTransceiver[src]

impl<'a> OptionIntoWasmAbi for &'a RtcRtpTransceiver[src]

impl PartialEq<RtcRtpTransceiver> for RtcRtpTransceiver[src]

impl RefFromWasmAbi for RtcRtpTransceiver[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<RtcRtpTransceiver>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for RtcRtpTransceiver[src]

impl StructuralPartialEq for RtcRtpTransceiver[src]

impl WasmDescribe for RtcRtpTransceiver[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> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.