gpt-partition-type 0.1.0

A Rust library for getting information about a GPT partition from its partition type GUID
Documentation
  • Coverage
  • 0%
    0 out of 16 items documented0 out of 8 items with examples
  • Size
  • Source code size: 17.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.7 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • jamcleod/gpt-partition-type
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jamcleod

gpt-partition-type

A Rust library for getting information about a GPT partition from its partition type GUID.

Usage:

use gpt_partition_type::{PartitionDescription, parse_guid};

assert_eq!(
    parse_guid("0FC63DAF-8483-4772-8E79-3D69D8477DE4").description().unwrap(),
    PartitionDescription {
        os: "Linux",
        type_description: "Linux filesystem data"
    }
);