docs.rs failed to build async-dropper-simple-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
async-dropper-simple-0.2.6
async-dropper is probably the least-worst ad-hoc AsyncDrop implementation you've seen, and it works in two ways:
async_dropper::simpleis stolen nearly verbatim from this StackOverflow answer (thanks topaholg!)async_dropper::deriveprovides a trait calledAsyncDropand corresponding [derive macro][rust-derive-macro], which try to useDefaultandPartialEqto determine when to async drop.
The code in this crate powers async_dropper::simple. See the async_dropper crate for more details.