1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! BuildType definition module.

use serde::{Deserialize, Serialize};

/// Release or Debug.
#[derive(Debug, Serialize, Deserialize, Clone, Copy)]
pub enum BuildType {
    #[allow(missing_docs)]
    Release,
    #[allow(missing_docs)]
    Debug,
}

impl Default for BuildType {
    fn default() -> Self {
        Self::Debug
    }
}

impl ToString for BuildType {
    fn to_string(&self) -> String {
        format!("{:#?}", self)
    }
}