gears 0.1.7

Gears core implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use uuid::Uuid;

pub fn uuid_to_label(id: &Uuid) -> String {
    id.to_simple().to_string()
}

pub fn label_to_uuid(id: &str) -> Result<Uuid, String> {
    match Uuid::parse_str(id) {
        Ok(id) => Ok(id),
        Err(_) => Err("Invalid uuid form".to_owned())
    }
}