pub trait RTCRtpTransceiverMethods<D: DomTypes> {
// Required methods
fn Sender(&self) -> DomRoot<D::RTCRtpSender>;
fn Direction(&self) -> RTCRtpTransceiverDirection;
fn SetDirection(&self, value: RTCRtpTransceiverDirection);
}Required Methods§
fn Sender(&self) -> DomRoot<D::RTCRtpSender>
fn Direction(&self) -> RTCRtpTransceiverDirection
fn SetDirection(&self, value: RTCRtpTransceiverDirection)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".