Struct subparse::SsaFile
[−]
[src]
pub struct SsaFile { /* fields omitted */ }Represents a reconstructable .ssa/.ass file.
All unimportant information (for this project) are saved into SsaFilePart::Filler(...), so
a timespan-altered file still has the same field etc.
Methods
impl SsaFile[src]
fn parse(s: &str) -> SubtitleParserResult<SsaFile>[src]
Parse a .ssa subtitle string to SsaFile.
Trait Implementations
impl Debug for SsaFile[src]
impl Clone for SsaFile[src]
fn clone(&self) -> SsaFile[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl SubtitleFile for SsaFile[src]
fn get_subtitle_entries(&self) -> SubtitleParserResult<Vec<SubtitleEntry>>[src]
The subtitle entries can be changed by calling update_subtitle_entries().
fn update_subtitle_entries(
&mut self,
new_subtitle_entries: &[SubtitleEntry]
) -> SubtitleParserResult<()>[src]
&mut self,
new_subtitle_entries: &[SubtitleEntry]
) -> SubtitleParserResult<()>
Set the entries from the subtitle entries from the get_subtitle_entries(). Read more
fn to_data(&self) -> SubtitleParserResult<Vec<u8>>[src]
Returns a byte-stream in the respective format (.ssa, .srt, etc.) with the (probably) altered information. Read more