subtp 0.2.0

A parser for subtitle files such as the SubRip Subtitle (.srt) and the WebVTT (.vtt).
Documentation
1
2
3
4
5
6
//! Result types for parsing.

use crate::ParseError;

/// The result of parsing.
pub type ParseResult<T> = Result<T, ParseError>;