Struct backdrop::ThreadStrategy
source · pub struct ThreadStrategy();Available on crate feature
std only.Expand description
Strategy which drops the contained value in a newly spawned background thread.
A new thread is spawned (using std::thread::spawn) for every dropped value.
This is conceptually very simple, but relatively slow since spawning a thread has overhead.