pub struct Info {
    pub uid: Option<Vec<u8>>,
    pub prev_uid: Option<Vec<u8>>,
    pub next_uid: Option<Vec<u8>>,
    pub family_uids: Vec<Vec<u8>>,
    pub title: Option<String>,
    pub duration: Option<Duration>,
    pub date_utc: Option<OffsetDateTime>,
    pub muxing_app: String,
    pub writing_app: String,
}
Expand description

An Info segment with information pertaining to the entire file

Fields

uid: Option<Vec<u8>>

The file’s UID

prev_uid: Option<Vec<u8>>

Unique ID of the previous segment

next_uid: Option<Vec<u8>>

Unique ID of the next segment

family_uids: Vec<Vec<u8>>

Unique IDs of the families this segment belongs to

title: Option<String>

The file’s title

duration: Option<Duration>

The file’s duration

date_utc: Option<OffsetDateTime>

Production date

muxing_app: String

The muxing application or library

writing_app: String

The writing application

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.