1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! ## Tags reference
//!
//! Below you can find high-level API for accessing tags.
//! For each tag there is a `get_*` method that returns the associated value wrapped in a type.
//! Tags are stored in several nested tables; the following nested list reflects the overall structure.
//!
//! - [TIFF](tiff::EntryMap)
//! - [Exif](exif::EntryMap)
//! - [GPS](gps::EntryMap)
//! - [Interoperability](interop::EntryMap)
//! - [Apple](apple::EntryMap)
//!
//! Full description of each tag is in Exif standard that you can download from
//! [cipa.jp](https://cipa.jp/e/std/std-sec.html).
extern crate alloc;
extern crate std;
use *;
use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;