asdf-core 0.2.3

Core engine for reading and writing ASDF (Advanced Scientific Data Format) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Implementations of the ASDF core schemas.

pub mod datatype;
pub mod elements;
pub mod ndarray;
pub mod provenance;
pub mod pyrepr;
pub mod time;

pub use datatype::{ByteOrder, Datatype, Field, ScalarType};
pub use elements::{Element, decode_all, decode_inline, inline_ndarray};
pub use ndarray::{Mask, Ndarray, Source};
pub use provenance::{ExtensionMetadata, History, HistoryEntry, Meta, Software};
pub use pyrepr::{repr_complex, repr_f64};
pub use time::{Civil, Location, Time, TimeFormat, TimeScale};