gloo_file/
lib.rs

1//!
2//! Working with files and blobs on the Web.
3//!
4//! These APIs come in two flavors:
5//!
6//! 1. a callback style (that more directly mimics the JavaScript APIs), and
7//! 2. a `Future` API.
8
9mod blob;
10mod file_list;
11mod file_reader;
12mod object_url;
13
14pub use blob::*;
15pub use file_list::*;
16pub use file_reader::*;
17pub use object_url::*;
18
19mod sealed {
20    pub trait Sealed {}
21}
22use sealed::Sealed;