pub struct ParsedEvent {
pub start: i64,
pub duration: i64,
pub read_order: i32,
pub layer: i32,
pub style: i32,
pub name: String,
pub margin_l: i32,
pub margin_r: i32,
pub margin_v: i32,
pub effect: String,
pub text: String,
}Fields§
§start: i64§duration: i64§read_order: i32§layer: i32§style: i32§name: String§margin_l: i32§margin_r: i32§margin_v: i32§effect: String§text: StringTrait Implementations§
Source§impl Clone for ParsedEvent
impl Clone for ParsedEvent
Source§fn clone(&self) -> ParsedEvent
fn clone(&self) -> ParsedEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParsedEvent
impl Debug for ParsedEvent
Source§impl Default for ParsedEvent
impl Default for ParsedEvent
Source§fn default() -> ParsedEvent
fn default() -> ParsedEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedEvent
impl PartialEq for ParsedEvent
impl Eq for ParsedEvent
impl StructuralPartialEq for ParsedEvent
Auto Trait Implementations§
impl Freeze for ParsedEvent
impl RefUnwindSafe for ParsedEvent
impl Send for ParsedEvent
impl Sync for ParsedEvent
impl Unpin for ParsedEvent
impl UnsafeUnpin for ParsedEvent
impl UnwindSafe for ParsedEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more