try_reserve 0.2.1

Stable implementation of the TryReserveError from std for custom collections
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(not(feature = "std"), no_std)]
//! Stable TryReserveError that exposes TryReserveErrorKind
//!

pub mod error;
#[cfg(feature = "std")]
mod impls;
mod try_reserve;

pub use try_reserve::TryReserve;