kconfig-linux 0.1.1

WIP crate for the KConfig DSL in the Linux kernel
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Clone, Debug, PartialEq)]
pub struct KconfigSymbol {
    pub name: String,
}

impl KconfigSymbol {
    pub fn new(name: String) -> Self {
        KconfigSymbol { name }
    }
}