mdmg 0.1.6

A scaffold prototype code tool
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, Eq, PartialEq, Clone, PartialOrd, Ord)]
pub struct FileName(pub String);

impl FileName {
    pub fn new<T: Into<String>>(filename: T) -> Self {
        FileName(filename.into())
    }
}