Skip to main content

xisf_header/
lib.rs

1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4mod error;
5mod header;
6mod key;
7mod keyword;
8mod property;
9mod reader;
10mod splice;
11mod value;
12mod writer;
13
14pub use error::{Error, Result};
15pub use header::{Header, StructuralHints};
16pub use key::Key;
17pub use keyword::FitsKeyword;
18pub use property::Property;
19pub use value::{Fixed, FromField, IntoValue, Literal, Sci, Value};
20
21/// Re-export of [`time`], whose types appear in this crate's public API.
22pub use time;
23
24#[doc = include_str!("../docs/guide.md")]
25pub mod guide {}