Docs.rs
linux-cmdline-0.1.1
linux-cmdline 0.1.1
Docs.rs crate page
MPL-2.0
Links
crates.io
Source
Owners
aruiz
Dependencies
Versions
0%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
Cmdline
Trait Implementations
CmdlineMut
VecOfTuplesAsDict
In linux_cmdline
?
Type Definition
linux_cmdline
::
Cmdline
source
·
[
−
]
pub type Cmdline =
Vec
<
(
String
,
CmdlineParam
)
>;
Trait Implementations
source
impl
CmdlineMut
for
Cmdline
source
fn
parse
(buffer: &
str
) ->
Result
<
Cmdline
,
(
usize
, &'static
str
)
>
source
fn
add_param
(&mut self, key:
String
, value:
Option
<
String
>)
source
fn
render
(&self) ->
Result
<
String
, &'static
str
>
source
impl
VecOfTuplesAsDict
for
Cmdline
source
fn
get
<'a>(&'a mut self, key: &
String
) ->
Option
<&'a mut
CmdlineParam
>
source
fn
take_from_key
(&mut self, key: &
str
) ->
Option
<
CmdlineParam
>
source
fn
entry_or_insert
<'a>(
&'a mut self,
key:
String
,
insert:
CmdlineParam
) -> &'a mut
CmdlineParam