tempfile-istream 0.3.0

Implement IStream on an exclusive temp file which is deleted on release
docs.rs failed to build tempfile-istream-0.3.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.
Visit the last successful build: tempfile-istream-1.0.4

tempfile-istream

This is a read/write implementation of the windows crate's Windows::Win32::System::Com::IStream interface backed by a temp file on disk. The temp file is created with the tempfile crate, so it will be deleted by the OS as soon as the std::fs::File is closed.

It is intended as an alternative to SHCreateMemStream or CreateStreamOnHGlobal, both of which will hold the entire stream in memory.