Expand description
UTF-8-based kernel command line parsing utilities.
This module provides functionality for parsing and working with kernel command line arguments, supporting both key-only switches and key-value pairs with proper quote handling.
Structs§
- Cmdline
- A parsed UTF-8 kernel command line.
- Cmdline
Iter - An iterator over UTF-8 kernel command line parameters.
- Cmdline
Iter Str - An iterator over UTF-8 kernel command line parameters as string slices.
- Parameter
- A single kernel command line parameter.
- Parameter
Key - A single kernel command line parameter key
Type Aliases§
- Cmdline
Owned - An owned
Cmdline. Alias forCmdline<'static>.