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.

Implementations

impl SsaFile[src]

pub fn parse(s: &str) -> SubtitleParserResult<SsaFile>[src]

Parse a .ssa subtitle string to SsaFile.

Trait Implementations

impl Clone for SsaFile[src]

impl Debug for SsaFile[src]

impl From<SsaFile> for SubtitleFile[src]

impl SubtitleFileInterface for SsaFile[src]

Auto Trait Implementations

impl RefUnwindSafe for SsaFile

impl Send for SsaFile

impl Sync for SsaFile

impl Unpin for SsaFile

impl UnwindSafe for SsaFile

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.