mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 03:22:20 +00:00
4331834003
* Move tests -> testing * Directory restructure * Update Cargo.toml during restructure * Update Makefile during restructure * Fix arbitrary path
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;
|