Docs.rs
webrtc-util-0.5.1
webrtc-util 0.5.1
Docs.rs crate page
MIT
/
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
rainliu
Dependencies
async-trait ^0.1.51
normal
bytes ^1.1.0
normal
ipnet ^2.3.1
normal
lazy_static ^1.4.0
normal
log ^0.4.14
normal
parking_lot ^0.11.2
normal
rand ^0.8.4
normal
thiserror ^1.0.29
normal
tokio ^1.12.0
normal
chrono ^0.4.19
dev
env_logger ^0.9.0
dev
tokio-test ^0.4.2
dev
cc ^1.0.71
build
libc ^0.2.8
normal
nix ^0.23
normal
bitflags ^1.2.1
normal
winapi ^0.3.9
normal
Versions
12.2%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
Trait ReplayDetector
Required Methods
accept
check
Implementors
Other items in
webrtc_util
::
replay_detector
?
Trait
webrtc_util
::
replay_detector
::
ReplayDetector
[
−
]
[src]
pub trait ReplayDetector { fn
check
(&mut self, seq:
u64
) ->
bool
;
fn
accept
(&mut self); }
Required methods
[src]
fn
check
(&mut self, seq:
u64
) ->
bool
[src]
fn
accept
(&mut self)
Implementors
[src]
impl
ReplayDetector
for
NoOpReplayDetector
[src]
impl
ReplayDetector
for
SlidingWindowDetector
[src]
impl
ReplayDetector
for
WrappedSlidingWindowDetector