rustmax::core::prelude::rust_2024

Trait Drop

Source
pub trait Drop {
    // Required method
    fn drop(&mut self);
}
๐Ÿ”ฌThis is a nightly-only experimental API. (prelude_2024)
Expand description

Custom code within the destructor.

When a value is no longer needed, Rust will run a โ€œdestructorโ€ on that value. The most common way that a value is no longer needed is when it goes out of scope. Destructors may still run in other circumstances, but weโ€™re going to focus on scope for the examples here. To learn about some of those other cases, please see the reference section on destructors.

This destructor consists of two components:

  • A call to Drop::drop for that value, if this special Drop trait is implemented for its type.
  • The automatically generated โ€œdrop glueโ€ which recursively calls the destructors of all the fields of this value.

As Rust automatically calls the destructors of all contained fields, you donโ€™t have to implement Drop in most cases. But there are some cases where it is useful, for example for types which directly manage a resource. That resource may be memory, it may be a file descriptor, it may be a network socket. Once a value of that type is no longer going to be used, it should โ€œclean upโ€ its resource by freeing the memory or closing the file or socket. This is the job of a destructor, and therefore the job of Drop::drop.

ยงExamples

To see destructors in action, letโ€™s take a look at the following program:

struct HasDrop;

impl Drop for HasDrop {
    fn drop(&mut self) {
        println!("Dropping HasDrop!");
    }
}

struct HasTwoDrops {
    one: HasDrop,
    two: HasDrop,
}

impl Drop for HasTwoDrops {
    fn drop(&mut self) {
        println!("Dropping HasTwoDrops!");
    }
}

fn main() {
    let _x = HasTwoDrops { one: HasDrop, two: HasDrop };
    println!("Running!");
}

Rust will first call Drop::drop for _x and then for both _x.one and _x.two, meaning that running this will print

Running!
Dropping HasTwoDrops!
Dropping HasDrop!
Dropping HasDrop!

Even if we remove the implementation of Drop for HasTwoDrop, the destructors of its fields are still called. This would result in

Running!
Dropping HasDrop!
Dropping HasDrop!

ยงYou cannot call Drop::drop yourself

Because Drop::drop is used to clean up a value, it may be dangerous to use this value after the method has been called. As Drop::drop does not take ownership of its input, Rust prevents misuse by not allowing you to call Drop::drop directly.

In other words, if you tried to explicitly call Drop::drop in the above example, youโ€™d get a compiler error.

If youโ€™d like to explicitly call the destructor of a value, mem::drop can be used instead.

ยงDrop order

Which of our two HasDrop drops first, though? For structs, itโ€™s the same order that theyโ€™re declared: first one, then two. If youโ€™d like to try this yourself, you can modify HasDrop above to contain some data, like an integer, and then use it in the println! inside of Drop. This behavior is guaranteed by the language.

Unlike for structs, local variables are dropped in reverse order:

struct Foo;

impl Drop for Foo {
    fn drop(&mut self) {
        println!("Dropping Foo!")
    }
}

struct Bar;

impl Drop for Bar {
    fn drop(&mut self) {
        println!("Dropping Bar!")
    }
}

fn main() {
    let _foo = Foo;
    let _bar = Bar;
}

This will print

Dropping Bar!
Dropping Foo!

Please see the reference for the full rules.

ยงCopy and Drop are exclusive

You cannot implement both Copy and Drop on the same type. Types that are Copy get implicitly duplicated by the compiler, making it very hard to predict when, and how often destructors will be executed. As such, these types cannot have destructors.

ยงDrop check

Dropping interacts with the borrow checker in subtle ways: when a type T is being implicitly dropped as some variable of this type goes out of scope, the borrow checker needs to ensure that calling Tโ€™s destructor at this moment is safe. In particular, it also needs to be safe to recursively drop all the fields of T. For example, it is crucial that code like the following is being rejected:

โ“˜
use std::cell::Cell;

struct S<'a>(Cell<Option<&'a S<'a>>>, Box<i32>);
impl Drop for S<'_> {
    fn drop(&mut self) {
        if let Some(r) = self.0.get() {
            // Print the contents of the `Box` in `r`.
            println!("{}", r.1);
        }
    }
}

fn main() {
    // Set up two `S` that point to each other.
    let s1 = S(Cell::new(None), Box::new(42));
    let s2 = S(Cell::new(Some(&s1)), Box::new(42));
    s1.0.set(Some(&s2));
    // Now they both get dropped. But whichever is the 2nd one
    // to be dropped will access the `Box` in the first one,
    // which is a use-after-free!
}

The Nomicon discusses the need for drop check in more detail.

To reject such code, the โ€œdrop checkโ€ analysis determines which types and lifetimes need to still be live when T gets dropped. The exact details of this analysis are not yet stably guaranteed and subject to change. Currently, the analysis works as follows:

  • If T has no drop glue, then trivially nothing is required to be live. This is the case if neither T nor any of its (recursive) fields have a destructor (impl Drop). PhantomData, arrays of length 0 and ManuallyDrop are considered to never have a destructor, no matter their field type.
  • If T has drop glue, then, for all types U that are owned by any field of T, recursively add the types and lifetimes that need to be live when U gets dropped. The set of owned types is determined by recursively traversing T:
    • Recursively descend through PhantomData, Box, tuples, and arrays (excluding arrays of length 0).
    • Stop at reference and raw pointer types as well as function pointers and function items; they do not own anything.
    • Stop at non-composite types (type parameters that remain generic in the current context and base types such as integers and bool); these types are owned.
    • When hitting an ADT with impl Drop, stop there; this type is owned.
    • When hitting an ADT without impl Drop, recursively descend to its fields. (For an enum, consider all fields of all variants.)
  • Furthermore, if T implements Drop, then all generic (lifetime and type) parameters of T must be live.

In the above example, the last clause implies that 'a must be live when S<'a> is dropped, and hence the example is rejected. If we remove the impl Drop, the liveness requirement disappears and the example is accepted.

There exists an unstable way for a type to opt-out of the last clause; this is called โ€œdrop check eyepatchโ€ or may_dangle. For more details on this nightly-only feature, see the discussion in the Nomicon.

Required Methodsยง

1.0.0 ยท Source

fn drop(&mut self)

Executes the destructor for this type.

This method is called implicitly when the value goes out of scope, and cannot be called explicitly (this is compiler error E0040). However, the mem::drop function in the prelude can be used to call the argumentโ€™s Drop implementation.

When this method has been called, self has not yet been deallocated. That only happens after the method is over. If this wasnโ€™t the case, self would be a dangling reference.

ยงPanics

Implementations should generally avoid panic!ing, because drop() may itself be called during unwinding due to a panic, and if the drop() panics in that situation (a โ€œdouble panicโ€), this will likely abort the program. It is possible to check panicking() first, which may be desirable for a Drop implementation that is reporting a bug of the kind โ€œyou didnโ€™t finish using this before it was droppedโ€; but most types should simply clean up their owned allocations or other resources and return normally from drop(), regardless of what state they are in.

Note that even if this panics, the value is considered to be dropped; you must not cause drop to be called again. This is normally automatically handled by the compiler, but when using unsafe code, can sometimes occur unintentionally, particularly when using ptr::drop_in_place.

Implementorsยง

Sourceยง

impl Drop for Ast

A custom Drop impl is used for Ast such that it uses constant stack space but heap space proportional to the depth of the Ast.

Sourceยง

impl Drop for ClassSet

A custom Drop impl is used for ClassSet such that it uses constant stack space but heap space proportional to the depth of the ClassSet.

Sourceยง

impl Drop for RecvStream

Sourceยง

impl Drop for GaiFuture

Sourceยง

impl Drop for Library

Sourceยง

impl Drop for Asn1BitString

Sourceยง

impl Drop for Asn1Enumerated

Sourceยง

impl Drop for Asn1GeneralizedTime

Sourceยง

impl Drop for Asn1Integer

Sourceยง

impl Drop for Asn1Object

Sourceยง

impl Drop for Asn1OctetString

Sourceยง

impl Drop for Asn1String

Sourceยง

impl Drop for Asn1Time

Sourceยง

impl Drop for BigNum

Sourceยง

impl Drop for BigNumContext

Sourceยง

impl Drop for Cipher

Sourceยง

impl Drop for CipherCtx

Sourceยง

impl Drop for CmsContentInfo

Sourceยง

impl Drop for Conf

Sourceยง

impl Drop for Deriver<'_>

Sourceยง

impl Drop for DsaSig

Sourceยง

impl Drop for EcGroup

Sourceยง

impl Drop for EcPoint

Sourceยง

impl Drop for EcdsaSig

Sourceยง

impl Drop for Decrypter<'_>

Sourceยง

impl Drop for Encrypter<'_>

Sourceยง

impl Drop for Hasher

Sourceยง

impl Drop for LibCtx

Sourceยง

impl Drop for Md

Sourceยง

impl Drop for MdCtx

Sourceยง

impl Drop for OcspBasicResponse

Sourceยง

impl Drop for OcspCertId

Sourceยง

impl Drop for OcspOneReq

Sourceยง

impl Drop for OcspRequest

Sourceยง

impl Drop for OcspResponse

Sourceยง

impl Drop for Pkcs7

Sourceยง

impl Drop for Pkcs7Signed

Sourceยง

impl Drop for Pkcs7SignerInfo

Sourceยง

impl Drop for Pkcs12

Sourceยง

impl Drop for Provider

Sourceยง

impl Drop for Signer<'_>

Sourceยง

impl Drop for Verifier<'_>

Sourceยง

impl Drop for SrtpProtectionProfile

Sourceยง

impl Drop for Ssl

Sourceยง

impl Drop for SslContext

Sourceยง

impl Drop for SslSession

Sourceยง

impl Drop for OpensslString

Sourceยง

impl Drop for X509Store

Sourceยง

impl Drop for X509StoreBuilder

Sourceยง

impl Drop for AccessDescription

Sourceยง

impl Drop for DistPoint

Sourceยง

impl Drop for DistPointName

Sourceยง

impl Drop for GeneralName

Sourceยง

impl Drop for X509

Sourceยง

impl Drop for X509Algorithm

Sourceยง

impl Drop for X509Crl

Sourceยง

impl Drop for X509Extension

Sourceยง

impl Drop for X509Name

Sourceยง

impl Drop for X509NameEntry

Sourceยง

impl Drop for X509Object

Sourceยง

impl Drop for X509Req

Sourceยง

impl Drop for X509Revoked

Sourceยง

impl Drop for X509StoreContext

Sourceยง

impl Drop for X509VerifyParam

Sourceยง

impl Drop for Hir

A custom Drop impl is used for HirKind such that it uses constant stack space but heap space proportional to the depth of the total Hir.

Sourceยง

impl Drop for DropGuard

Sourceยง

impl Drop for CancellationToken

Sourceยง

impl Drop for EnteredSpan

Sourceยง

impl Drop for Span

Sourceยง

impl Drop for DefaultGuard

Sourceยง

impl Drop for Taker

Sourceยง

impl Drop for Error

Sourceยง

impl Drop for BacktraceFrameFmt<'_, '_, '_>

Sourceยง

impl Drop for BytesMut

Sourceยง

impl Drop for SelectedOperation<'_>

Sourceยง

impl Drop for Guard

Sourceยง

impl Drop for LocalHandle

Sourceยง

impl Drop for WaitGroup

Sourceยง

impl Drop for Enter

Sourceยง

impl Drop for Bytes

Sourceยง

impl Drop for ThreadPool

1.13.0 ยท Sourceยง

impl Drop for CString

1.63.0 ยท Sourceยง

impl Drop for OwnedFd

1.6.0 ยท Sourceยง

impl Drop for rustmax::std::string::Drain<'_>

Sourceยง

impl Drop for LocalWaker

1.36.0 ยท Sourceยง

impl Drop for Waker

Sourceยง

impl Drop for rustmax::tempfile::TempDir

Sourceยง

impl Drop for TempPath

Sourceยง

impl Drop for DuplexStream

Sourceยง

impl Drop for rustmax::tokio::net::tcp::OwnedWriteHalf

Sourceยง

impl Drop for rustmax::tokio::net::unix::OwnedWriteHalf

Sourceยง

impl Drop for Runtime

Sourceยง

impl Drop for Notified<'_>

Sourceยง

impl Drop for OwnedSemaphorePermit

Sourceยง

impl Drop for SemaphorePermit<'_>

Sourceยง

impl Drop for AbortHandle

Sourceยง

impl Drop for LocalEnterGuard

Sourceยง

impl Drop for LocalSet

Sourceยง

impl Drop for Handle

Sourceยง

impl Drop for PushDir<'_>

Sourceยง

impl Drop for PushEnv<'_>

Sourceยง

impl Drop for rustmax::xshell::TempDir

Sourceยง

impl<'a> Drop for Entered<'a>

Sourceยง

impl<'a> Drop for rustmax::rayon::string::Drain<'a>

Sourceยง

impl<'a> Drop for ParseBuffer<'a>

Sourceยง

impl<'a> Drop for PathSegmentsMut<'a>

Sourceยง

impl<'a> Drop for UrlQuery<'a>

Sourceยง

impl<'a, B> Drop for MutBorrowedBit<'a, B>
where B: BitBlock,

Sourceยง

impl<'a, I> Drop for Chunk<'a, I>
where I: Iterator, <I as Iterator>::Item: 'a,

Sourceยง

impl<'a, K, I, F> Drop for Group<'a, K, I, F>
where I: Iterator, <I as Iterator>::Item: 'a,

Sourceยง

impl<'a, R, G, T> Drop for MappedReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, G, T> Drop for ReentrantMutexGuard<'a, R, G, T>
where R: RawMutex + 'a, G: GetThreadId + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::mutex::MappedMutexGuard<'a, R, T>
where R: RawMutex + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::mutex::MutexGuard<'a, R, T>
where R: RawMutex + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::rwlock::RwLockReadGuard<'a, R, T>
where R: RawRwLock + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for RwLockUpgradableReadGuard<'a, R, T>
where R: RawRwLockUpgrade + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, R, T> Drop for lock_api::rwlock::RwLockWriteGuard<'a, R, T>
where R: RawRwLock + 'a, T: 'a + ?Sized,

Sourceยง

impl<'a, T> Drop for smallvec::Drain<'a, T>
where T: 'a + Array,

Sourceยง

impl<'a, T> Drop for Locked<'a, T>

Sourceยง

impl<'a, T> Drop for rustmax::rayon::collections::binary_heap::Drain<'a, T>
where T: Ord + Send,

Sourceยง

impl<'a, T> Drop for rustmax::rayon::collections::vec_deque::Drain<'a, T>
where T: Send,

Sourceยง

impl<'a, T> Drop for rustmax::reqwest::header::Drain<'a, T>

Sourceยง

impl<'a, T> Drop for ValueDrain<'a, T>

Sourceยง

impl<'a, T> Drop for rustmax::tokio::sync::MappedMutexGuard<'a, T>
where T: ?Sized,

Sourceยง

impl<'a, T> Drop for RwLockMappedWriteGuard<'a, T>
where T: ?Sized,

Sourceยง

impl<'a, T> Drop for rustmax::tokio::sync::RwLockReadGuard<'a, T>
where T: ?Sized,

Sourceยง

impl<'a, T> Drop for rustmax::tokio::sync::RwLockWriteGuard<'a, T>
where T: ?Sized,

Sourceยง

impl<'a, T, A> Drop for DrainSorted<'a, T, A>
where T: Ord, A: Allocator,

Sourceยง

impl<'a, T, const CAP: usize> Drop for arrayvec::arrayvec::Drain<'a, T, CAP>
where T: 'a,

Sourceยง

impl<'data, T> Drop for rustmax::rayon::vec::Drain<'data, T>
where T: Send,

Sourceยง

impl<'e, E, W> Drop for EncoderWriter<'e, E, W>
where E: Engine, W: Write,

Sourceยง

impl<'f> Drop for VaListImpl<'f>

Sourceยง

impl<A> Drop for smallvec::IntoIter<A>
where A: Array,

Sourceยง

impl<A> Drop for SmallVec<A>
where A: Array,

1.82.0 ยท Sourceยง

impl<A> Drop for RepeatN<A>

Sourceยง

impl<C> Drop for CartableOptionPointer<C>

Sourceยง

impl<Fut> Drop for Shared<Fut>
where Fut: Future,

Sourceยง

impl<Fut> Drop for FuturesUnordered<Fut>

1.21.0 ยท Sourceยง

impl<I, A> Drop for rustmax::std::vec::Splice<'_, I, A>
where I: Iterator, A: Allocator,

Sourceยง

impl<I, K, V, S> Drop for indexmap::map::iter::Splice<'_, I, K, V, S>
where I: Iterator<Item = (K, V)>, K: Hash + Eq, S: BuildHasher,

1.7.0 ยท Sourceยง

impl<K, V, A> Drop for BTreeMap<K, V, A>
where A: Allocator + Clone,

1.7.0 ยท Sourceยง

impl<K, V, A> Drop for rustmax::std::collections::btree_map::IntoIter<K, V, A>
where A: Allocator + Clone,

Sourceยง

impl<R> Drop for ReadLine<'_, R>
where R: ?Sized,

Sourceยง

impl<S> Drop for SslStream<S>

Sourceยง

impl<S> Drop for SpawnReady<S>

Sourceยง

impl<T> Drop for fd_lock::read_guard::RwLockReadGuard<'_, T>
where T: AsFd,

Release the lock.

Sourceยง

impl<T> Drop for fd_lock::write_guard::RwLockWriteGuard<'_, T>
where T: AsFd,

Release the lock.

Sourceยง

impl<T> Drop for Flock<T>
where T: Flockable,

Sourceยง

impl<T> Drop for OnceBox<T>

Sourceยง

impl<T> Drop for Dh<T>

Sourceยง

impl<T> Drop for Dsa<T>

Sourceยง

impl<T> Drop for EcKey<T>

Sourceยง

impl<T> Drop for PKey<T>

Sourceยง

impl<T> Drop for PkeyCtx<T>

Sourceยง

impl<T> Drop for Rsa<T>

Sourceยง

impl<T> Drop for openssl::stack::IntoIter<T>
where T: Stackable,

Sourceยง

impl<T> Drop for Stack<T>
where T: Stackable,

Sourceยง

impl<T> Drop for X509Lookup<T>

Sourceยง

impl<T> Drop for X509LookupMethod<T>

Sourceยง

impl<T> Drop for Instrumented<T>

Sourceยง

impl<T> Drop for AtomicCell<T>

Sourceยง

impl<T> Drop for rustmax::crossbeam::channel::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::crossbeam::channel::Sender<T>

Sourceยง

impl<T> Drop for Injector<T>

Sourceยง

impl<T> Drop for Owned<T>
where T: Pointable + ?Sized,

Sourceยง

impl<T> Drop for ArrayQueue<T>

Sourceยง

impl<T> Drop for SegQueue<T>

Sourceยง

impl<T> Drop for ShardedLockWriteGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for SharedPtr<T>
where T: SharedPtrTarget,

Sourceยง

impl<T> Drop for UniquePtr<T>
where T: UniquePtrTarget,

Sourceยง

impl<T> Drop for WeakPtr<T>
where T: WeakPtrTarget,

Sourceยง

impl<T> Drop for rustmax::futures::channel::mpsc::Receiver<T>

Sourceยง

impl<T> Drop for UnboundedReceiver<T>

Sourceยง

impl<T> Drop for rustmax::futures::channel::oneshot::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::futures::channel::oneshot::Sender<T>

Sourceยง

impl<T> Drop for rustmax::futures::lock::MutexGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for MutexLockFuture<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for rustmax::futures::lock::OwnedMutexGuard<T>
where T: ?Sized,

Sourceยง

impl<T> Drop for OwnedMutexLockFuture<T>
where T: ?Sized,

Sourceยง

impl<T> Drop for LocalFutureObj<'_, T>

Sourceยง

impl<T> Drop for rustmax::reqwest::header::IntoIter<T>

Sourceยง

impl<T> Drop for ThinBox<T>
where T: ?Sized,

Sourceยง

impl<T> Drop for rustmax::std::sync::mpmc::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::std::sync::mpmc::Sender<T>

Sourceยง

impl<T> Drop for rustmax::std::sync::MappedMutexGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for rustmax::std::sync::MappedRwLockReadGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for rustmax::std::sync::MappedRwLockWriteGuard<'_, T>
where T: ?Sized,

1.0.0 ยท Sourceยง

impl<T> Drop for rustmax::std::sync::MutexGuard<'_, T>
where T: ?Sized,

1.70.0 ยท Sourceยง

impl<T> Drop for OnceLock<T>

Sourceยง

impl<T> Drop for ReentrantLockGuard<'_, T>
where T: ?Sized,

1.0.0 ยท Sourceยง

impl<T> Drop for rustmax::std::sync::RwLockReadGuard<'_, T>
where T: ?Sized,

1.0.0 ยท Sourceยง

impl<T> Drop for rustmax::std::sync::RwLockWriteGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for AsyncFd<T>
where T: AsRawFd,

Sourceยง

impl<T> Drop for rustmax::tokio::sync::broadcast::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::broadcast::Sender<T>

Sourceยง

impl<T> Drop for OwnedPermit<T>

Sourceยง

impl<T> Drop for Permit<'_, T>

Sourceยง

impl<T> Drop for PermitIterator<'_, T>

Sourceยง

impl<T> Drop for WeakSender<T>

Sourceยง

impl<T> Drop for WeakUnboundedSender<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::oneshot::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::oneshot::Sender<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::MutexGuard<'_, T>
where T: ?Sized,

Sourceยง

impl<T> Drop for OnceCell<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::OwnedMutexGuard<T>
where T: ?Sized,

Sourceยง

impl<T> Drop for OwnedRwLockWriteGuard<T>
where T: ?Sized,

Sourceยง

impl<T> Drop for rustmax::tokio::sync::watch::Receiver<T>

Sourceยง

impl<T> Drop for rustmax::tokio::sync::watch::Sender<T>

Sourceยง

impl<T> Drop for JoinHandle<T>

Sourceยง

impl<T> Drop for JoinSet<T>

1.0.0 ยท Sourceยง

impl<T, A> Drop for Box<T, A>
where A: Allocator, T: ?Sized,

1.12.0 ยท Sourceยง

impl<T, A> Drop for PeekMut<'_, T, A>
where T: Ord, A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Drop for LinkedList<T, A>
where A: Allocator,

1.6.0 ยท Sourceยง

impl<T, A> Drop for rustmax::std::collections::vec_deque::Drain<'_, T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Drop for VecDeque<T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Drop for Rc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T, A> Drop for UniqueRc<T, A>
where A: Allocator, T: ?Sized,

1.4.0 ยท Sourceยง

impl<T, A> Drop for rustmax::std::rc::Weak<T, A>
where A: Allocator, T: ?Sized,

1.0.0 ยท Sourceยง

impl<T, A> Drop for Arc<T, A>
where A: Allocator, T: ?Sized,

1.4.0 ยท Sourceยง

impl<T, A> Drop for rustmax::std::sync::Weak<T, A>
where A: Allocator, T: ?Sized,

1.6.0 ยท Sourceยง

impl<T, A> Drop for rustmax::std::vec::Drain<'_, T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Drop for rustmax::std::vec::IntoIter<T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> Drop for Vec<T, A>
where A: Allocator,

1.80.0 ยท Sourceยง

impl<T, F> Drop for LazyLock<T, F>

Sourceยง

impl<T, F> Drop for TaskLocalFuture<T, F>
where T: 'static,

Sourceยง

impl<T, F, A> Drop for ExtractIf<'_, T, F, A>
where A: Allocator, F: FnMut(&mut T) -> bool,

Sourceยง

impl<T, F, S> Drop for ScopeGuard<T, F, S>
where F: FnOnce(T), S: Strategy,

Sourceยง

impl<T, N> Drop for GenericArrayIter<T, N>
where N: ArrayLength<T>,

Sourceยง

impl<T, U> Drop for rustmax::futures::lock::MappedMutexGuard<'_, T, U>
where T: ?Sized, U: ?Sized,

Sourceยง

impl<T, U> Drop for OwnedMappedMutexGuard<T, U>
where T: ?Sized, U: ?Sized,

Sourceยง

impl<T, U> Drop for OwnedRwLockMappedWriteGuard<T, U>
where T: ?Sized, U: ?Sized,

Sourceยง

impl<T, U> Drop for OwnedRwLockReadGuard<T, U>
where T: ?Sized, U: ?Sized,

Sourceยง

impl<T, const CAP: usize> Drop for ArrayVec<T, CAP>

Sourceยง

impl<T, const CAP: usize> Drop for arrayvec::arrayvec::IntoIter<T, CAP>

1.40.0 ยท Sourceยง

impl<T, const N: usize> Drop for rustmax::std::array::IntoIter<T, N>

1.0.0 ยท Sourceยง

impl<W> Drop for BufWriter<W>
where W: Write + ?Sized,