try_reserve/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2//! Stable TryReserveError that exposes TryReserveErrorKind
3//!
4
5pub mod error;
6#[cfg(feature = "std")]
7mod impls;
8mod try_reserve;
9
10pub use try_reserve::TryReserve;