Struct matroska::ChapterEdition[][src]

pub struct ChapterEdition {
    pub hidden: bool,
    pub default: bool,
    pub ordered: bool,
    pub chapters: Vec<Chapter>,
}

A complete set of chapters

Fields

Whether the chapters should be hidden in the user interface

Whether the chapters should be the default

Whether the order to play chapters is enforced

The individual chapter entries

Trait Implementations

impl Debug for ChapterEdition
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations