Struct defer_drop::DeferDrop
source · #[repr(transparent)]pub struct DeferDrop<T: Send + 'static> { /* private fields */ }
Expand description
Wrapper type that, when dropped, sends the inner value to a global background thread to be dropped. Useful in cases where a value takes a long time to drop (for instance, a windows file that might block on close, or a large data structure that has to extensively recursively trawl itself).
DeferDrop
implements Deref
and DerefMut
, meaning it can be
dereferenced and freely used like a container around its inner type.
Notes:
Carefully consider whether this pattern is necessary for your use case. Like all worker-thread abstractions, sending the value to a separate thread comes with its own costs, so it should only be done if performance profiling indicates that it’s a performance gain.
There is only one global worker thread. Dropped values are enqueued in an unbounded channel to be consumed by this thread; if you produce more garbage than the thread can handle, this will cause unbounded memory consumption. There is currently no way for the thread to signal or block if it is overwhelmed.
All of the standard non-determinism threading caveats apply here. The
objects are guaranteed to be destructed in the order received through a
channel, which means that objects sent from a single thread will be
destructed in order. However, there is no guarantee about the ordering of
interleaved values from different threads. Additionally, there are no
guarantees about how long the values will be queued before being dropped,
or even that they will be dropped at all. If your main
thread terminates
before all drops could be completed, they will be silently lost (as though
via a mem::forget
). This behavior is entirely up to your OS’s thread
scheduler. There is no way to receive a signal indicating when a particular
object was dropped.
Example
use defer_drop::DeferDrop;
use std::time::{Instant, Duration};
use std::iter::repeat_with;
let massive_vec: Vec<Vec<i32>> = repeat_with(|| vec![1, 2, 3])
.take(1_000_000)
.collect();
let deferred = DeferDrop::new(massive_vec.clone());
fn timer(f: impl FnOnce()) -> Duration {
let start = Instant::now();
f();
Instant::now() - start
}
let drop1 = timer(move || drop(massive_vec));
let drop2 = timer(move || drop(deferred));
assert!(drop2 < drop1);
Implementations
sourceimpl<T: Send + 'static> DeferDrop<T>
impl<T: Send + 'static> DeferDrop<T>
sourcepub fn into_inner(this: Self) -> T
pub fn into_inner(this: Self) -> T
Unwrap the DeferDrop
, returning the inner value. This has the effect
of cancelling the deferred drop behavior; ownership of the inner value
is transferred to the caller.
Trait Implementations
sourceimpl<'de, T: Deserialize<'de> + Send + 'static> Deserialize<'de> for DeferDrop<T>
impl<'de, T: Deserialize<'de> + Send + 'static> Deserialize<'de> for DeferDrop<T>
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
sourceimpl<T: Ord + Send + 'static> Ord for DeferDrop<T>
impl<T: Ord + Send + 'static> Ord for DeferDrop<T>
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
sourceimpl<T: PartialEq + Send + 'static> PartialEq<DeferDrop<T>> for DeferDrop<T>
impl<T: PartialEq + Send + 'static> PartialEq<DeferDrop<T>> for DeferDrop<T>
sourceimpl<T: PartialOrd + Send + 'static> PartialOrd<DeferDrop<T>> for DeferDrop<T>
impl<T: PartialOrd + Send + 'static> PartialOrd<DeferDrop<T>> for DeferDrop<T>
sourcefn partial_cmp(&self, other: &DeferDrop<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &DeferDrop<T>) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more