[][src]Struct libass_sys::ass_event

#[repr(C)]pub struct ass_event {
    pub Start: c_longlong,
    pub Duration: c_longlong,
    pub ReadOrder: c_int,
    pub Layer: c_int,
    pub Style: c_int,
    pub Name: *mut c_char,
    pub MarginL: c_int,
    pub MarginR: c_int,
    pub MarginV: c_int,
    pub Effect: *mut c_char,
    pub Text: *mut c_char,
    pub render_priv: *mut ASS_RenderPriv,
}

Fields

Start: c_longlongDuration: c_longlongReadOrder: c_intLayer: c_intStyle: c_intName: *mut c_charMarginL: c_intMarginR: c_intMarginV: c_intEffect: *mut c_charText: *mut c_charrender_priv: *mut ASS_RenderPriv

Trait Implementations

impl Clone for ass_event[src]

impl Copy for ass_event[src]

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