ps_uuid/variant/mod.rs
1mod methods;
2
3#[derive(Clone, Copy, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
4pub enum Variant {
5 /// The Apollo NCS variant is for backwards compatibility with the Apollo NCS UUID format.
6 NCS = 0,
7
8 #[default]
9 /// This is the standard, default variant of UUID.
10 OSF = 4,
11
12 /// Reserved for Microsoft Corporation backward compatibility.
13 DCOM = 6,
14
15 /// Reserved for future use.
16 Reserved = 7,
17}