Docs.rs
webrtc-util-0.4.0
webrtc-util 0.4.0
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
rainliu
Dependencies
anyhow ^1.0.41
normal
async-trait ^0.1
normal
bytes ^1.0.1
normal
ipnet ^2.3.1
normal
lazy_static ^1.4
normal
log ^0.4.14
normal
rand ^0.8.4
normal
thiserror ^1.0.25
normal
tokio ^1.0
normal
chrono ^0.4.19
dev
env_logger ^0.8.3
dev
tokio-test ^0.4
dev
libc ^0.2.8
normal
nix ^0.8
normal
bitflags ^1.2.1
normal
winapi ^0.2.8
normal
Versions
10.4%
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