try_drop/prelude.rs
1//! Most commonly used traits.
2
3pub use crate::{
4 DynFallibleTryDropStrategy, FallibleTryDropStrategy, PureTryDrop, ThreadSafe, TryDrop,
5 TryDropStrategy,
6};
7
8#[cfg(feature = "global")]
9pub use crate::{GlobalDynFallibleTryDropStrategy, GlobalTryDropStrategy};
10
11#[cfg(any(feature = "global", feature = "thread-local"))]
12pub use crate::ImpureTryDrop;