1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! This module contains the core structs and parsers needed to read
//! the self-description of a root file. These parsers can be used to
//! build new parsers using the [root-ls](https://github.com/cbourjau/alice-rs) cli.

pub mod types;
pub mod parsers;
mod tstreamer;
mod tstreamerinfo;
mod file;
mod tkey;
mod typeid;
mod file_item;

pub(crate) use self::tstreamer::{tstreamer, TStreamer};
pub(crate) use self::tstreamerinfo::{tstreamerinfo, TStreamerInfo};
pub(crate) use self::types::*;
pub(crate) use self::parsers::*;
pub(crate) use self::tkey::*;
pub(crate) use self::typeid::*;

pub use self::file::RootFile;
pub use self::file_item::FileItem;