mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-14 20:15:17 +00:00
13 lines
441 B
Rust
13 lines
441 B
Rust
|
//! This crate provides a single type (its counter-part HashMapDelay has been removed as it
|
||
|
//! currently is not in use in lighthouse):
|
||
|
//! - `HashSetDelay`
|
||
|
//!
|
||
|
//! # HashSetDelay
|
||
|
//!
|
||
|
//! This is similar to a `HashMapDelay` except the mapping maps to the expiry time. This
|
||
|
//! allows users to add objects and check their expiry deadlines before the `Stream`
|
||
|
//! consumes them.
|
||
|
|
||
|
mod hashset_delay;
|
||
|
pub use crate::hashset_delay::HashSetDelay;
|