revelo-core 0.4.6

Core engine for revelo: the FileAnalyze byte reader, stream collection, element tree, and ergonomic Reader API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Convenience re-exports of the most commonly used types.
//!
//! ```ignore
//! use revelo_core::prelude::*;
//! ```

pub use crate::file_analyze::FileAnalyze;
/// Ergonomic alias for [`FileAnalyze`]. Prefer this name in new code.
pub type MediaFile<'a> = crate::file_analyze::FileAnalyze<'a>;
pub use crate::file_level::{FileLevelInfo, fill_file_level_fields};
pub use crate::reader::Reader;
pub use crate::stream::{Stream, StreamCollection, StreamKind};