[][src]Enum ffav_sys::AVSubtitleType

#[repr(u32)]pub enum AVSubtitleType {
    SUBTITLE_NONE,
    SUBTITLE_BITMAP,
    SUBTITLE_TEXT,
    SUBTITLE_ASS,
}

Variants

SUBTITLE_NONE
SUBTITLE_BITMAP

< A bitmap, pict will be set

SUBTITLE_TEXT

Plain text, the text field must be set by the decoder and is authoritative. ass and pict fields may contain approximations.

SUBTITLE_ASS

Formatted text, the ass field must be set by the decoder and is authoritative. pict and text fields may contain approximations.

Trait Implementations

impl Clone for AVSubtitleType[src]

impl Copy for AVSubtitleType[src]

impl Debug for AVSubtitleType[src]

impl Eq for AVSubtitleType[src]

impl Hash for AVSubtitleType[src]

impl PartialEq<AVSubtitleType> for AVSubtitleType[src]

impl StructuralEq for AVSubtitleType[src]

impl StructuralPartialEq for AVSubtitleType[src]

Auto Trait Implementations

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.