Home
last modified time | relevance | path

Searched refs:API (Results 1 – 12 of 12) sorted by relevance

/webrtc/webrtc/src/api/
H A Dmod.rs37 pub struct API { struct
43 impl API { argument
195 pub fn build(mut self) -> API { in build() argument
196 API { in build()
/webrtc/media/
H A DCargo.toml6 description = "A pure Rust implementation of WebRTC Media API"
/webrtc/data/
H A DCargo.toml6 description = "A pure Rust implementation of WebRTC DataChannel API"
/webrtc/constraints/
H A DCargo.toml6 description = "A pure Rust implementation of WebRTC Media Constraints API"
/webrtc/examples/examples/data-channels-flow-control/
H A DREADME.md10 These methods are equivalent to that of JavaScript WebRTC API.
11 See <https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel> for more details.
/webrtc/examples/examples/
H A DREADME.md7 #### Media API
21 #### Data Channel API
28 - [x] [ORTC](ortc): Example ortc shows how to use the ORTC API for DataChannel communication.
/webrtc/webrtc/
H A DCargo.toml6 description = "A pure Rust implementation of WebRTC API"
H A DCHANGELOG.md8 * Make RTCRtpCodecCapability::payloader_for_codec public API [#349](https://github.com/webrtc-rs/we…
18 * Change `API::new_rtp_sender` signature to `|&self, track: Option<Arc<dyn TrackLocal + Send + Sync…
85 …for extmap matching. [#321](https://github.com/webrtc-rs/webrtc/pull/321). API change for `MediaEn…
/webrtc/webrtc/src/data_channel/
H A Ddata_channel_test.rs6 use crate::api::{APIBuilder, API};
36 api: &API, in set_up_data_channel_parameters_test() argument
1286 async fn new(api: &API) -> Result<Self> { in new()
1376 async fn new_ortc_pair(api: &API) -> Result<(Arc<TestOrtcStack>, Arc<TestOrtcStack>)> { in new_ortc_pair()
/webrtc/webrtc/src/peer_connection/
H A Dpeer_connection_test.rs104 pub(crate) async fn new_pair(api: &API) -> Result<(RTCPeerConnection, RTCPeerConnection)> { in new_pair()
H A Dpeer_connection_internal.rs72 api: &API, in new() argument
1104 pub(super) async fn create_ice_transport(&self, api: &API) -> Arc<RTCIceTransport> { in create_ice_transport()
H A Dmod.rs16 use crate::api::API;
221 pub(crate) async fn new(api: &API, mut configuration: RTCConfiguration) -> Result<Self> { in new() argument