mir/
newtype.rs

1pub struct NewType<T> {
2    pub name: String,
3    pub doc: Option<String>,
4    pub ty: T,
5    pub public: bool,
6}