Expand description
Utilities for saving request entries to the filesystem.
Structs§
- BufReader
- A drop-in replacement for
std::io::BufReader
with more functionality. - Entries
- A result of
Multipart::save()
. - Partial
Entries - The partial result type for
Multipart::save*()
. - Partial
Saved Field - The field that was being read when the save operation quit.
- Save
Builder - A builder for saving a file or files to the local filesystem.
- Saved
Field - A field that has been saved (to memory or disk) from a multipart request.
- TempDir
- A directory in the filesystem that is automatically deleted when it goes out of scope.
Enums§
- Data
Reader - A
Read
(andBufRead
) adapter forSavedData
- Partial
Reason - The reason the save operation quit partway through.
- SaveDir
- The save directory for
Entries
. May be temporary (delete-on-drop) or permanent. - Save
Result - The ternary result type used for the
SaveBuilder<_>
API. - Saved
Data - A saved field’s data container (in memory or on disk)
Type Aliases§
- Entries
Save Result - Shorthand result for methods that return
Entries
- Field
Save Result - Shorthand result for methods that return
FieldData
s.