limine 0.6.3

Rust interface for the Limine boot protocol
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright © 2026, Julian Scheffers
// SPDX-License-Identifier: MIT OR Apache-2.0

/// Universally Unique IDentifier.
pub struct Uuid {
    pub a: u32,
    pub b: u16,
    pub c: u16,
    pub d: [u8; 8],
}