guid-partition-types-rs

A small crate designed to work with parition types and their GUIDs

Why?

Because I was working with partition types and their GUIDs and I noticed there wasn't a crate for that. So I made one.

Todo

Usage

This crate simply introduces two enums (System & PartitionType) and a struct (GUID)

that being said heres an example of printing out the EFI GUID struct. ```rust extern crate guidpartitiontypes_rs;

use guidpartitiontypesrs::{ GUID, System, GENERALPARTITION_TYPES };

fn main() { println!("{:?}", GENERALPARTITIONTYPES.get("EFI")); } ```