Expand description
Working with files and blobs on the Web.
These APIs come in two flavors:
- a callback style (that more directly mimics the JavaScript APIs), and
- a
Future
API.
Modules§
Structs§
- Blob
- A
Blob
. - File
- A
File
. - File
List - A list of files, for example from an
<input type="file">
. - Object
Url - A resource wrapper around
URL.createObjectURL
/URL.revokeObjectURL
.
Enums§
Traits§
- Blob
Contents - This trait is used to overload the
Blob::new_with_options
function, allowing a variety of types to be used to create aBlob
. Ignore this, and use &[u8], &str, etc to create aBlob
.