//! Module for subtitle content utils
modarea;modsize;pubusearea::{Area, AreaValues};pubusesize::Size;usethiserror::Error;/// Error for content
#[derive(Debug, Error)]#[non_exhaustive]pubenumContentError{/// Indicate an invalid bounding box Area
/// Example: If at least one coordinate value of second point are inferior of first point.
#[error("invalid bounding box for Area")]
InvalidAreaBounding,}