ps-uuid 0.1.0-4

An opinionated UUID implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod methods;

#[derive(Clone, Copy, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum Variant {
    /// The Apollo NCS variant is for backwards compatibility with the Apollo NCS UUID format.
    NCS = 0,

    #[default]
    /// This is the standard, default variant of UUID.
    OSF = 4,

    /// Reserved for Microsoft Corporation backward compatibility.
    DCOM = 6,

    /// Reserved for future use.
    Reserved = 7,
}