pub trait IntoThreadUnsafeAdHocMutFallibleDropStrategy<E: Into<Error>>: FnMut(Error) -> Result<(), E> + Sized {
// Provided method
fn into_drop_strategy(
self,
) -> ThreadUnsafeAdHocMutFallibleDropStrategy<Self, E> { ... }
}Expand description
Turn this type into a ThreadUnsafeAdHocMutFallibleDropStrategy.
Provided Methods§
Sourcefn into_drop_strategy(self) -> ThreadUnsafeAdHocMutFallibleDropStrategy<Self, E>
fn into_drop_strategy(self) -> ThreadUnsafeAdHocMutFallibleDropStrategy<Self, E>
Turn this type into a ThreadUnsafeAdHocMutFallibleDropStrategy.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.