use std::fmt::{Display, Formatter};
pub type ShadowConst = &'static str;
#[derive(Debug, Clone)]
pub struct ConstVal {
pub desc: String,
pub v: String,
pub t: ConstType,
}
impl ConstVal {
pub fn new<S: Into<String>>(desc: S) -> ConstVal {
ConstVal {
desc: desc.into(),
v: "".to_string(),
t: ConstType::OptStr,
}
}
pub fn new_bool<S: Into<String>>(desc: S) -> ConstVal {
ConstVal {
desc: desc.into(),
v: "true".to_string(),
t: ConstType::Bool,
}
}
}
#[derive(Debug, Clone)]
pub enum ConstType {
OptStr,
Str,
Bool,
}
impl Display for ConstType {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
ConstType::OptStr => write!(f, "Option<&str>"),
ConstType::Str => write!(f, "&str"),
ConstType::Bool => write!(f, "bool"),
}
}
}