media 0.1.0

A pure rust implementation of media framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DataFormat {
    Variant = 0, // Variant
    String,      // String
}

#[derive(Clone, Debug)]
pub struct DataFrameDescription {
    pub format: DataFormat,
}

impl DataFrameDescription {
    pub fn new(format: DataFormat) -> Self {
        Self {
            format,
        }
    }
}