20 lines
249 B
Plaintext
20 lines
249 B
Plaintext
|
Type UUID = Array<U8, 16>;
|
||
|
|
||
|
Type Nanoseconds = U32;
|
||
|
|
||
|
Structure Duration {
|
||
|
secs: U64
|
||
|
nanos: Nanoseconds
|
||
|
}
|
||
|
|
||
|
Structure LinkedList<T> {
|
||
|
data: T,
|
||
|
child: Option<LinkedList<T>>,
|
||
|
}
|
||
|
|
||
|
Constant VERSION = Version {
|
||
|
major: 1,
|
||
|
minor: 0,
|
||
|
patch: 0
|
||
|
};
|