ass-core 0.1.2

High-performance ASS subtitle format parser and analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Media AST nodes for embedded fonts and graphics
//!
//! Contains Font and Graphic structs representing embedded media from the
//! [Fonts] and [Graphics] sections with zero-copy design and UU-decoding.

mod font;
mod graphic;

#[cfg(test)]
mod font_tests;
#[cfg(test)]
mod graphic_tests;

pub use font::Font;
pub use graphic::Graphic;