try-drop 0.2.0

Batteries included error handling mechanisms for drops which can fail
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Most commonly used traits.

pub use crate::{
    DynFallibleTryDropStrategy, FallibleTryDropStrategy, PureTryDrop, ThreadSafe, TryDrop,
    TryDropStrategy,
};

#[cfg(feature = "global")]
pub use crate::{GlobalDynFallibleTryDropStrategy, GlobalTryDropStrategy};

#[cfg(any(feature = "global", feature = "thread-local"))]
pub use crate::ImpureTryDrop;