Trait ThreadLocalFallibleTryDropStrategy

Source
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>

Source§

fn from(strategy: T) -> Self

Converts to this type from the input type.

Implementors§