1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use std::{default, fmt};

#[derive(PartialEq, Eq, Debug, Clone, Copy, Serialize, Deserialize)]
pub enum DataType {
    #[serde(rename = "blob")]
    Blob,
    #[serde(rename = "dir")]
    Directory,
}

impl DataType {
    pub fn from_capnp(value: ::common_capnp::DataType) -> DataType {
        match value {
            ::common_capnp::DataType::Blob => DataType::Blob,
            ::common_capnp::DataType::Directory => DataType::Directory,
        }
    }
}

impl fmt::Display for DataType {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            &DataType::Blob => write!(f, "blob"),
            &DataType::Directory => write!(f, "dir"),
        }
    }
}

impl default::Default for DataType {
    fn default() -> Self {
        DataType::Blob
    }
}