Skip to main content

xisf_header/
lib.rs

1#![forbid(unsafe_code)]
2// This Source Code Form is subject to the terms of the Mozilla Public
3// License, v. 2.0. If a copy of the MPL was not distributed with this
4// file, You can obtain one at https://mozilla.org/MPL/2.0/.
5#![doc = include_str!("../README.md")]
6
7mod error;
8mod header;
9mod key;
10mod keyword;
11mod property;
12mod reader;
13mod splice;
14mod value;
15mod writer;
16
17pub use error::{Error, Result};
18pub use header::{Header, StructuralHints};
19pub use key::Key;
20pub use keyword::FitsKeyword;
21pub use property::Property;
22pub use value::{Fixed, FromField, IntoValue, Literal, Sci, Value};
23
24/// Re-export of [`time`], whose types appear in this crate's public API.
25pub use time;
26
27#[doc = include_str!("../docs/guide.md")]
28pub mod guide {}