Struct matroska::Target[][src]

pub struct Target {
    pub target_type_value: Option<u64>,
    pub target_type: Option<String>,
    pub track_uids: Vec<u64>,
    pub edition_uids: Vec<u64>,
    pub chapter_uids: Vec<u64>,
    pub attachment_uids: Vec<u64>,
}

Which elements the metadata’s tag applies to

Fields

target_type_value: Option<u64>

Logical level of target

target_type: Option<String>

Informational string of target level

track_uids: Vec<u64>

Unique IDs of track(s) the tag belongs to

edition_uids: Vec<u64>

Unique IDs of edition entry(s) the tag belongs to

chapter_uids: Vec<u64>

Unique IDs of chapter(s) the tag belongs to

attachment_uids: Vec<u64>

Unique IDs of attachment(s) the tag belongs to

Trait Implementations

impl Debug for Target[src]

Auto Trait Implementations

impl RefUnwindSafe for Target

impl Send for Target

impl Sync for Target

impl Unpin for Target

impl UnwindSafe for Target

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, 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.