Struct matroska::Attachment[][src]

pub struct Attachment {
    pub description: Option<String>,
    pub name: String,
    pub mime_type: String,
    pub data: Vec<u8>,
}

An attached file (often used for cover art)

Fields

A human-friendly name for the file

The file's name

The file's MIME type

The file's raw data

Trait Implementations

impl Debug for Attachment
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Attachment

impl Sync for Attachment