Enum bootsector::Attributes [] [src]

pub enum Attributes {
    MBR {
        bootable: bool,
        type_code: u8,
    },
    GPT {
        type_uuid: [u8; 16],
        partition_uuid: [u8; 16],
        attributes: [u8; 8],
        name: String,
    },
}

Table-specific information about a partition.

Variants

Fields of MBR

Fields of GPT

Trait Implementations

impl Debug for Attributes
[src]

Formats the value using the given formatter.

impl Clone for Attributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Attributes
[src]

impl PartialEq for Attributes
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.