/// Possible ways of displaying the kernel parameters.
#[derive(Clone, Debug, Eq, PartialEq)]pubenumDisplayType{/// Print the kernel parameter name along with its value.
Default,/// Print only the name of the parameter.
Name,/// Print only the value of the parameter.
Value,/// Print only the value of the parameter without new line.
Binary,}implDefault forDisplayType{fndefault()->Self{Self::Default
}}