[][src]Struct libass_sys::ass_track

#[repr(C)]pub struct ass_track {
    pub n_styles: c_int,
    pub max_styles: c_int,
    pub n_events: c_int,
    pub max_events: c_int,
    pub styles: *mut ASS_Style,
    pub events: *mut ASS_Event,
    pub style_format: *mut c_char,
    pub event_format: *mut c_char,
    pub track_type: ass_track__bindgen_ty_1,
    pub PlayResX: c_int,
    pub PlayResY: c_int,
    pub Timer: f64,
    pub WrapStyle: c_int,
    pub ScaledBorderAndShadow: c_int,
    pub Kerning: c_int,
    pub Language: *mut c_char,
    pub YCbCrMatrix: ASS_YCbCrMatrix,
    pub default_style: c_int,
    pub name: *mut c_char,
    pub library: *mut ASS_Library,
    pub parser_priv: *mut ASS_ParserPriv,
}

Fields

n_styles: c_intmax_styles: c_intn_events: c_intmax_events: c_intstyles: *mut ASS_Styleevents: *mut ASS_Eventstyle_format: *mut c_charevent_format: *mut c_chartrack_type: ass_track__bindgen_ty_1PlayResX: c_intPlayResY: c_intTimer: f64WrapStyle: c_intScaledBorderAndShadow: c_intKerning: c_intLanguage: *mut c_charYCbCrMatrix: ASS_YCbCrMatrixdefault_style: c_intname: *mut c_charlibrary: *mut ASS_Libraryparser_priv: *mut ASS_ParserPriv

Trait Implementations

impl Clone for ass_track[src]

impl Copy for ass_track[src]

impl Debug for ass_track[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.