#[repr(C, packed)]
pub struct CommandLineTag { /* private fields */ }
Expand description

This tag contains the command line string.

The string is a normal C-style UTF-8 zero-terminated string that can be obtained via the command_line method.

Implementations

Read the command line string that is being passed to the booting kernel. This is an null-terminated UTF-8 string. If this returns Err then perhaps the memory is invalid or the bootloader doesn’t follow the spec.

Examples
if let Some(tag) = boot_info.command_line_tag() {
    let command_line = tag.command_line();
    assert_eq!("/bootarg", command_line);
}

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.