pub trait ThreadLocalFallibleTryDropStrategy: DynFallibleTryDropStrategy + 'static { }Expand description
A trait which signifies a try drop strategy which can be used in a thread local scenario. Must be dynamically dispatched and must live as long as the program does.
Trait Implementations§
Source§impl<T: ThreadLocalFallibleTryDropStrategy> From<T> for Box<dyn ThreadLocalFallibleTryDropStrategy>
impl<T: ThreadLocalFallibleTryDropStrategy> From<T> for Box<dyn ThreadLocalFallibleTryDropStrategy>
Implementors§
impl<T: DynFallibleTryDropStrategy + 'static> ThreadLocalFallibleTryDropStrategy for T
Available on crate feature
thread-local only.