Struct matroska::Chapter[][src]

pub struct Chapter {
    pub time_start: Duration,
    pub time_end: Option<Duration>,
    pub hidden: bool,
    pub enabled: bool,
    pub display: Vec<ChapterDisplay>,
}

An individual chapter point

Fields

Timestamp of the start of the chapter

Timestamp of the end of the chapter

Whether the chapter point should be hidden in the user interface

Whether the chapter point should be enabled in the user interface

Contains all strings to use for displaying chapter

Trait Implementations

impl Debug for Chapter
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Chapter

impl Sync for Chapter