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

This tag contains the name of the bootloader that is booting the kernel.

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

Implementations

Read the name of the bootloader that is booting the 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.boot_loader_name_tag() {
    let name = tag.name();
    assert_eq!("GRUB 2.02~beta3-5", name);
}

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.