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 } } }