1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Contains the code relative to the deserialization and serialization of MOCs.
//!
//! In the current status of the IVOA MOC standard, a large part of the MOC
//! serialization/deserialization is based on a hierarchical view,
//! from the cells of lower resolution (smaller depth) to the cells of higher resolution (largest depth).
//! Hence, we cannot perform serialization/deserialization in streaming, with a low memory footprint.
//!
//! The module also contain experimental code for streaming compatible serialization/deserialization.
//!

pub mod ascii;
pub mod fits;
pub mod gz;
pub mod img;
pub mod json;
pub mod stcs;